summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2012-07-08 13:27:37 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2012-07-21 23:47:00 -0700
commit36ddba4f6f916eabfc94a22cf7845221f1d4a3cb (patch)
treeaa1cf5e7659820c87ea56a91ec5b46f36d65f940
parentc7e1d62267ad0296fbe29c00cd6b54a1ee1f93e0 (diff)
downloadxscope-36ddba4f6f916eabfc94a22cf7845221f1d4a3cb.tar.gz
Define *HEADER constants as string pointers, not arrays
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--print11.c8
-rw-r--r--x11.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/print11.c b/print11.c
index e7da143..36b335f 100644
--- a/print11.c
+++ b/print11.c
@@ -179,10 +179,10 @@ PrintSuccessfulSetUpReply(const unsigned char *buf)
/* */
/* ************************************************************ */
-const char REQUESTHEADER[] = "............REQUEST";
-const char EVENTHEADER[] = "..............EVENT";
-const char ERRORHEADER[] = "..............ERROR";
-const char REPLYHEADER[] = "..............REPLY";
+const char *REQUESTHEADER = "............REQUEST";
+const char *EVENTHEADER = "..............EVENT";
+const char *ERRORHEADER = "..............ERROR";
+const char *REPLYHEADER = "..............REPLY";
/* ************************************************************ */
diff --git a/x11.h b/x11.h
index ec4760b..4fba039 100644
--- a/x11.h
+++ b/x11.h
@@ -552,7 +552,7 @@ extern long PrintListSTR(const unsigned char *buf, long number,
extern long pad(long n);
-extern const char REQUESTHEADER[], EVENTHEADER[], ERRORHEADER[], REPLYHEADER[];
+extern const char *REQUESTHEADER, *EVENTHEADER, *ERRORHEADER, *REPLYHEADER;
#define GC_function 0x00000001L
#define GC_plane_mask 0x00000002L