Skip to content
Snippets Groups Projects
Commit 22ba16c0 authored by Milan Jaros's avatar Milan Jaros
Browse files

fix args

parent d553e377
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
int main(int argc, char** args) {
//Check args
if (argc == 0) {
if (argc < 2) {
printf("USAGE: fft lena_gray.bmp\n");
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment