Skip to content
Snippets Groups Projects
Commit 00a300a1 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve a couple GCC warnings of impossible conditions

parent da0daeb7
No related branches found
No related tags found
No related merge requests found
...@@ -464,7 +464,8 @@ int sbbs_t::batchflagprompt(smb_t* smb, file_t** bf, uint* row, const int total ...@@ -464,7 +464,8 @@ int sbbs_t::batchflagprompt(smb_t* smb, file_t** bf, uint* row, const int total
,const int totalfiles) ,const int totalfiles)
{ {
char ch,str[256],*p; char ch,str[256],*p;
bool remcdt,remfile; bool remcdt = false;
bool remfile = false;
int c, d; int c, d;
char path[MAX_PATH + 1]; char path[MAX_PATH + 1];
int i,j; int i,j;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment