Skip to content

Commit

Permalink
Fixed missing return value
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 26, 2004
1 parent 944cf68 commit 82a4b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/Src/dd_wad.c
Expand Up @@ -836,7 +836,7 @@ int W_OpenAuxiliary(const char *filename)
if((handle = F_Open(filename, "rb")) == NULL)
{
Con_Error("W_OpenAuxiliary: %s not found.", filename);
return;
return -1;
}
AuxiliaryHandle = handle;
F_Read(&header, sizeof(header), handle);
Expand Down

0 comments on commit 82a4b83

Please sign in to comment.