diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2004-12-15 16:23:30 +0000 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2004-12-15 16:23:30 +0000 |
| commit | 9c59ace465b9be739b9234845c9864b9c98cb236 (patch) | |
| tree | d502593a881fd3d539c862f4e9a7f56ea3badc99 /man3/stdarg.3 | |
| parent | 3d4d91162455c53ff7e66402f93020123f20c423 (diff) | |
| download | man-pages-9c59ace465b9be739b9234845c9864b9c98cb236.tar.gz | |
Removed unused variable in EXAMPLE
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=262567
[[
In va_arg(3), the example function foo (section EXAMPLES, not
COMPARISON) has an unused variable: char *p.
]]
Diffstat (limited to 'man3/stdarg.3')
| -rw-r--r-- | man3/stdarg.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/stdarg.3 b/man3/stdarg.3 index 833e972d48..021f3f7f5f 100644 --- a/man3/stdarg.3 +++ b/man3/stdarg.3 @@ -208,7 +208,7 @@ with each format character based on the type. void foo(char *fmt, ...) { va_list ap; int d; - char c, *p, *s; + char c, *s; va_start(ap, fmt); while (*fmt) |
