From b1184fcdb51451aeb473e2a0025b5c5106bc8ea5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 22 Apr 2000 07:26:55 +0000 Subject: [PATCH] Update. * manual/examples/subopt.c (mount_opts): Add missing terminating entry. Reported by Michael Deutschmann . --- ChangeLog | 4 ++++ manual/examples/subopt.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6043ab7..a8169b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2000-04-22 Ulrich Drepper + * manual/examples/subopt.c (mount_opts): Add missing terminating + entry. + Reported by Michael Deutschmann . + * assert/assert-perr.c: Include for abort prototype. * libio/ftello.c: Likewise. * libio/ftello64.c: Likewise. diff --git a/manual/examples/subopt.c b/manual/examples/subopt.c index df71720..8c04a57 100644 --- a/manual/examples/subopt.c +++ b/manual/examples/subopt.c @@ -12,7 +12,8 @@ enum RO_OPTION = 0, RW_OPTION, READ_SIZE_OPTION, - WRITE_SIZE_OPTION + WRITE_SIZE_OPTION, + THE_END }; const char *mount_opts[] = @@ -20,7 +21,8 @@ const char *mount_opts[] = [RO_OPTION] = "ro", [RW_OPTION] = "rw", [READ_SIZE_OPTION] = "rsize", - [WRITE_SIZE_OPTION] = "wsize" + [WRITE_SIZE_OPTION] = "wsize", + [THE_END] = NULL }; int -- 2.7.4