diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-07-08 13:27:37 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-07-21 23:47:00 -0700 |
commit | 36ddba4f6f916eabfc94a22cf7845221f1d4a3cb (patch) | |
tree | aa1cf5e7659820c87ea56a91ec5b46f36d65f940 /print11.c | |
parent | c7e1d62267ad0296fbe29c00cd6b54a1ee1f93e0 (diff) |
Define *HEADER constants as string pointers, not arrays
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'print11.c')
-rw-r--r-- | print11.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"; /* ************************************************************ */ |