From: Ramakrishnan Muthukrishnan Date: Wed, 12 Jan 2022 06:15:43 +0000 (+0530) Subject: missing single quotes X-Git-Url: https://git.rkrishnan.org/%5B/listings/flags/status?a=commitdiff_plain;h=d56d13f3b8905c931fd952a65d56bc1748a5c9bc;p=pihpsdr.git missing single quotes --- diff --git a/rigctl.c b/rigctl.c index 0ff553b..6e96455 100644 --- a/rigctl.c +++ b/rigctl.c @@ -1819,7 +1819,7 @@ gboolean parse_extended_cmd(char *command, CLIENT *client) { case 'G': // ZZMG // set/read mic gain if (command[4] == ';') { - memset(reply, \0, 9); + memset(reply, '\0', 9); sprintf(reply, "ZZMG%03d;", (int)(((mic_gain + 12.0) / 72.0) * 100.0)); send_resp(client->fd, reply); } else if (command[7] == ';') {