diff --git a/main.c b/main.c index 96d736d..7207a8a 100644 --- a/main.c +++ b/main.c @@ -75,7 +75,8 @@ static void process_rc_file(void) return; snprintf(text, sizeof(text), "%s/.mspdebug", home); - process_file(text); + if (!access(text, F_OK)) + process_file(text); } #define MODE_RF2500 0x01