diff options
author | Roland McGrath <roland@gnu.org> | 2003-10-26 19:58:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-10-26 19:58:58 +0000 |
commit | db551059c5606b714ea567ff107c208ee801e922 (patch) | |
tree | 73cffabcaed4dca28c1ff44ba8602ae4a6004712 /utils/rpctrace.c | |
parent | af4c324ea1fe068fa20850cb367ab757c1ec439c (diff) |
2003-10-26 Roland McGrath <roland@frob.com>
* rpctrace.c (docs, args_doc): Make arrays, not pointers.
(doc): Remove "\v.". Reported by Alfred M. Szmidt <ams@kemisten.nu>.
Diffstat (limited to 'utils/rpctrace.c')
-rw-r--r-- | utils/rpctrace.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/rpctrace.c b/utils/rpctrace.c index eaef3d05..ec8fa19e 100644 --- a/utils/rpctrace.c +++ b/utils/rpctrace.c @@ -1,6 +1,6 @@ /* Trace RPCs sent to selected ports - Copyright (C) 1998,99,2001,02 Free Software Foundation, Inc. + Copyright (C) 1998,99,2001,02,03 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -43,10 +43,8 @@ static const struct argp_option options[] = {0} }; -static const char *args_doc = "COMMAND [ARG...]"; -static const char *doc = -"Trace Mach Remote Procedure Calls." -"\v."; +static const char args_doc[] = "COMMAND [ARG...]"; +static const char doc[] = "Trace Mach Remote Procedure Calls."; /* The msgid_ihash table maps msgh_id values to names. */ |