From bdb22d1235972c70431096d67cf32df559cb9c36 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 Aug 2005 07:09:47 +0000 Subject: [PATCH] (main): Cosmetic: use '\0' in place of 0. --- src/pr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pr.c b/src/pr.c index 3344e76df4..2e8aa02480 100644 --- a/src/pr.c +++ b/src/pr.c @@ -891,7 +891,7 @@ main (int argc, char **argv) column_count_string = X2REALLOC (column_count_string, &n_alloc); column_count_string[n_digits++] = c; - column_count_string[n_digits] = 0; + column_count_string[n_digits] = '\0'; continue; } -- 2.47.3