You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ 20%] Building C object CMakeFiles/dirbuster-ng.dir/src/dirbuster-ng.c.o
/Users/rockyou/Virtual Apps/dirbuster-ng/src/dirbuster-ng.c:15:7: error:
non-void function 'parse_arguments' should return a value [-Wreturn-type]
return;
^
Changing return; to return 0; solves this problem.
The text was updated successfully, but these errors were encountered:
Changing
return;
toreturn 0;
solves this problem.The text was updated successfully, but these errors were encountered: