Tobias Klauser f177718f24 format: Add missing braces around 'if' clause
When compiling bmon with gcc 6.1 it complains with the following
warning:

out_format.c: In function ‘get_token’:
out_format.c:134:10: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
   } else if (!strncasecmp(token+5, "txrate:", 7))
          ^~
out_format.c:136:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
    return buf;
    ^~~~~~

Indeed, the 'return buf' should only be executed if it was snprintf()'ed
to. Otherwise "unknown" should be returned. Fix this by adding braces.
Also use the 'type' variable in strncasecmp() as in the other checks.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
2016-04-28 16:11:30 +02:00
..
2013-07-05 15:11:46 +02:00
2016-01-29 12:11:44 +01:00
2014-08-25 01:07:19 +02:00
2013-07-05 15:11:46 +02:00
2014-08-25 01:07:19 +02:00
2013-07-05 15:11:46 +02:00
2013-07-05 15:11:46 +02:00
2013-07-05 15:11:46 +02:00
2014-08-25 01:07:19 +02:00
2014-06-02 15:03:23 +02:00
2014-08-25 01:07:19 +02:00
2014-08-25 01:07:19 +02:00
2013-07-05 15:11:46 +02:00
2013-07-05 15:11:46 +02:00
2014-08-25 01:07:19 +02:00
2014-08-24 20:51:00 +02:00