]> sigrok.org Git - libsigrok.git/commit
serial_bt: silence compiler warning (unused value)
authorGerhard Sittig <redacted>
Sun, 16 Jun 2019 08:14:58 +0000 (10:14 +0200)
committerGerhard Sittig <redacted>
Sun, 21 Aug 2022 15:45:11 +0000 (17:45 +0200)
commit819277b5d87dfe3038f72d1d6560412553fbd415
treedb1755f746c95e9d9bff4fca0b0bd425e495b9fd
parent5e03750144d2d1afb0f3656200337e2a16c9c487
serial_bt: silence compiler warning (unused value)

Drop assignments of values to variables which never took effect. Drop
assignments which strictly speaking were not required, but were added in
the past to silence warnings in different compiler versions.

../src/serial_bt.c:168:2: warning: Value stored to 'type' is never read
        type = SER_BT_CONN_UNKNOWN;

../src/serial_bt.c:507:2: warning: Value stored to 'now_us' is never read
        now_us = 0;     /* Silence a (false) compiler warning. */

Shuffle variable declarations into the rough order in which they are
used in the function's body.
src/serial_bt.c