diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-03 22:07:45 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-03 22:07:45 +0100 |
commit | 6cf5cc3083bd42750e45387651eb538a8c2fdb4a (patch) | |
tree | 2d9d5e165aaa34a0443120d198c5e850c12d8599 /print-syntax.c | |
parent | Fix reject and char-range support (diff) | |
download | libparser-6cf5cc3083bd42750e45387651eb538a8c2fdb4a.tar.gz libparser-6cf5cc3083bd42750e45387651eb538a8c2fdb4a.tar.bz2 libparser-6cf5cc3083bd42750e45387651eb538a8c2fdb4a.tar.xz |
m print-syntax.c
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'print-syntax.c')
-rw-r--r-- | print-syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-syntax.c b/print-syntax.c index 5f2e5e3..5e1f83c 100644 --- a/print-syntax.c +++ b/print-syntax.c @@ -84,7 +84,7 @@ print_sentence(const union libparser_sentence *sentence, int indent) break; case LIBPARSER_SENTENCE_TYPE_EOF: - printf("%s%n", "(* end of file *)", &len); + printf("%s%n", "!<0x00, 0xFF>", &len); indent += len; break; |