fix: return with a value, in function returning void (LTC_EASY)

This commit is contained in:
Karel Miko 2018-02-26 09:52:57 +01:00
parent 64298c1819
commit 733d3e5d7d

View File

@ -466,7 +466,7 @@ static void time_cipher_lrw(void)
tally_results(1);
}
#else
static void time_cipher_lrw(void) { fprintf(stderr, "NO LRW\n"); return 0; }
static void time_cipher_lrw(void) { fprintf(stderr, "NO LRW\n"); }
#endif