net_modem: Remove excess parentheses.

This commit is contained in:
OBattler
2024-04-01 23:36:38 +02:00
parent 9c53413ca4
commit 5d94a361f1

View File

@@ -757,7 +757,7 @@ modem_do_command(modem_t *modem, int repeat)
if (repeat) {
/* Handle the case of A/ being invoked without a previous command to run */
if ((modem->prevcmdbuf[0] == '\0')) {
if (modem->prevcmdbuf[0] == '\0') {
modem_send_res(modem, ResOK);
return;
}