aboutsummaryrefslogtreecommitdiff
path: root/src/hyper
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2015-03-08 18:54:04 +0000
committerdos-reis <gdr@axiomatics.org>2015-03-08 18:54:04 +0000
commitb75f75e80ea1130b3d3f21d5c0da1789ce988d1c (patch)
tree142b2100f45bcb70e523ecdde06b40eb61cb0cfe /src/hyper
parent172e429ef0ca254a6711d66dbeb52eae09a6dfa9 (diff)
downloadopen-axiom-b75f75e80ea1130b3d3f21d5c0da1789ce988d1c.tar.gz
Fix misc warnings.
Diffstat (limited to 'src/hyper')
-rw-r--r--src/hyper/hthits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hyper/hthits.c b/src/hyper/hthits.c
index 0dd712c5..ce277e65 100644
--- a/src/hyper/hthits.c
+++ b/src/hyper/hthits.c
@@ -98,7 +98,7 @@ badDB(void)
static void
untexbuf(register char* s)
{
- register char *d = s;
+ char *d = s;
while (*s)
switch (*s) {
@@ -176,7 +176,7 @@ splitpage(char* buf, char** ptitle, char** pbody)
static void
squirt(char* s, int n)
{
- register char *t, *e;
+ char *t, *e;
int c;
c = s[n];