diff options
author | dos-reis <gdr@axiomatics.org> | 2012-08-26 20:27:00 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2012-08-26 20:27:00 +0000 |
commit | 50731b6737c4ec7ef2f5be7eca44a5e7692d305a (patch) | |
tree | 9ca4458f507b8ef9bb4141b450e6708f523c5e26 /src/hyper | |
parent | 5d206512273e528a4b3c863a7556f26f8c1c59de (diff) | |
download | open-axiom-50731b6737c4ec7ef2f5be7eca44a5e7692d305a.tar.gz |
* graph/Gdraws/Gfun.c (GDrawLine): Make string parameter of type
const char*.
(GDrawPushButton): Likewise.
(GDrawString): Likewise.
(PSCreateContext): Likewise.
(centerX): Likewise.
* Makefile.am (all-graph): Require all-utils.
Diffstat (limited to 'src/hyper')
-rw-r--r-- | src/hyper/hthits.c | 2 | ||||
-rw-r--r-- | src/hyper/initx.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hyper/hthits.c b/src/hyper/hthits.c index f1f23ba3..f6bb3e9d 100644 --- a/src/hyper/hthits.c +++ b/src/hyper/hthits.c @@ -136,7 +136,7 @@ static void splitpage(char* buf, char** ptitle, char** pbody) { int n, depth, tno; - char *s; + const char* s; switch (buf[1]) { case 'p': diff --git a/src/hyper/initx.c b/src/hyper/initx.c index 4cfae4ef..03146c71 100644 --- a/src/hyper/initx.c +++ b/src/hyper/initx.c @@ -1000,7 +1000,7 @@ mergeDatabases(void) int is_it_850(XFontStruct *fontarg) { - char *s; + const char* s; int i,val; static struct { const char *name; |