rigctl.c/rotctl.c: fix closing brace placement

A closing brace was improperly placed before a pair of CPP #endif
directives rather than between them.  Caught by a cppcheck audit.
Hamlib-3.0
Nate Bargmann 2014-03-07 05:55:54 -06:00
rodzic c230cad17b
commit fafbb772c5
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -430,8 +430,8 @@ int main (int argc, char *argv[])
free(hist_path);
hist_path = (char *)NULL;
}
}
#endif
}
#endif
rig_close(my_rig); /* close port */
rig_cleanup(my_rig); /* if you care about memory */

Wyświetl plik

@ -337,8 +337,8 @@ int main (int argc, char *argv[])
free(hist_path);
hist_path = (char *)NULL;
}
}
#endif
}
#endif
rot_close(my_rot); /* close port */
rot_cleanup(my_rot); /* if you care about memory */