n900: Fix compiler warning with logical expression

CC       plugins/n900.o
plugins/n900.c: In function ‘mtc_reachable_cb’:
plugins/n900.c:241:28: error: logical not is only applied to the left hand side of comparison [-Werror=logical-not-parentheses]
  if (!g_isi_msg_error(msg) < 0)
                            ^
This commit is contained in:
Marcel Holtmann 2015-07-07 11:31:09 +02:00
parent c3af639874
commit def77f7653
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ static void mtc_reachable_cb(const GIsiMessage *msg, void *data)
struct ofono_modem *modem = data;
struct isi_data *isi = ofono_modem_get_data(modem);
if (!g_isi_msg_error(msg) < 0)
if (g_isi_msg_error(msg) < 0)
return;
ISI_RESOURCE_DBG(msg);