diff --git a/dump1090.c b/dump1090.c index 70d5b7f..c0e7b6a 100644 --- a/dump1090.c +++ b/dump1090.c @@ -590,7 +590,7 @@ int main(int argc, char **argv) { if (!strcmp(argv[j],"--device-index") && more) { Modes.dev_index = verbose_device_search(argv[++j]); } else if (!strcmp(argv[j],"--gain") && more) { - Modes.gain = (int) atof(argv[++j])*10; // Gain is in tens of DBs + Modes.gain = (int) (atof(argv[++j])*10); // Gain is in tens of DBs } else if (!strcmp(argv[j],"--enable-agc")) { Modes.enable_agc++; } else if (!strcmp(argv[j],"--freq") && more) {