mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
gprofng: fix -Wduplicated-cond warning
gprofng/ChangeLog 2022-09-21 Vladimir Mezentsev <vladimir.mezentsev@oracle.com> * src/collctrl.cc: Fix -Wduplicated-cond warning.
This commit is contained in:
@ -760,7 +760,7 @@ Coll_Ctrl::get_collect_args ()
|
||||
*p++ = strdup ("-s");
|
||||
if (synctrace_thresh < 0)
|
||||
*p++ = strdup ("calibrate");
|
||||
else if (synctrace_thresh < 0)
|
||||
else if (synctrace_thresh == 0)
|
||||
*p++ = strdup ("all");
|
||||
else
|
||||
*p++ = dbe_sprintf ("%d", synctrace_thresh);
|
||||
|
Reference in New Issue
Block a user