diff options
author | welinder@darter.rentec.com <welinder@darter.rentec.com> | 2004-09-13 16:19:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:03:12 -0700 |
commit | 6a9a969e71981ba02e805c552f6b540c6cd0eb8e (patch) | |
tree | 2423834b744691c12d95883071af2cdf8453cb45 /test-lexing.c | |
parent | Fix up format string buglet found by the compiler. (diff) | |
download | sparse-6a9a969e71981ba02e805c552f6b540c6cd0eb8e.tar.gz sparse-6a9a969e71981ba02e805c552f6b540c6cd0eb8e.tar.bz2 sparse-6a9a969e71981ba02e805c552f6b540c6cd0eb8e.zip |
Janitorial trivialities.
Diffstat (limited to 'test-lexing.c')
-rw-r--r-- | test-lexing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-lexing.c b/test-lexing.c index ce24970..9cb00f9 100644 --- a/test-lexing.c +++ b/test-lexing.c @@ -38,7 +38,7 @@ int main(int argc, char **argv) while (!eof_token(token)) { int prec = 1; struct token *next = token->next; - char * separator = ""; + const char *separator = ""; if (next->pos.whitespace) separator = " "; if (next->pos.newline) { |