diff options
author | Gary Benson <gbenson@redhat.com> | 2014-08-05 13:06:19 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-08-05 13:06:19 +0100 |
commit | d6c95504f0d3e51709f50c6e82cf78e18b188430 (patch) | |
tree | b7ec39393bdd5250ae35427b96cf0c3a6f2b4c53 /gdb/utils.c | |
parent | c26fd07110bd0d3197bb7a9ef9feab79c1fdb069 (diff) | |
download | gdb-d6c95504f0d3e51709f50c6e82cf78e18b188430.zip gdb-d6c95504f0d3e51709f50c6e82cf78e18b188430.tar.gz gdb-d6c95504f0d3e51709f50c6e82cf78e18b188430.tar.bz2 |
Remove spurious va_end in vwarning
This commit removes a spurious va_end in vwarning.
gdb/
2014-08-05 Gary Benson <gbenson@redhat.com>
* utils.c (vwarning): Remove spurious va_end.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index a4b5937..23055ce 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -529,7 +529,6 @@ vwarning (const char *string, va_list args) fputs_unfiltered (warning_pre_print, gdb_stderr); vfprintf_unfiltered (gdb_stderr, string, args); fprintf_unfiltered (gdb_stderr, "\n"); - va_end (args); } } |