diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-09-07 14:51:19 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-09-07 14:51:19 +0200 |
commit | 91a64d5ccfd724eda5826b6f02704600a956e12e (patch) | |
tree | 468d2d95b6e2481883a7e8d46c19ce7f31d07017 /src/tc-format.c | |
parent | cb22888f08466e46b115bdef6c4ee39b9a2a983e (diff) | |
parent | 7dfa6d0b6b18d54050671ed5430b9421a165481c (diff) |
Merge branch 'release/debian/3.23-1'debian/3.23-1
Diffstat (limited to 'src/tc-format.c')
-rw-r--r-- | src/tc-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tc-format.c b/src/tc-format.c index 7e90664..ad067ee 100644 --- a/src/tc-format.c +++ b/src/tc-format.c @@ -70,7 +70,7 @@ static void t_format(int argc) HXformat_add(fmt, "TWOARG", "a, b", HXTYPE_STRING | HXFORMAT_IMMED); ++argc; printf("# HXformat2\n"); - for (s = fmt2_strings; *s != '\0'; ++s) + for (s = fmt2_strings; *s != NULL; ++s) HXformat_fprintf(fmt, stdout, *s); HXformat_free(fmt); } |