Skip to content

Commit

Permalink
Fix a couple of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Oct 11, 2024
1 parent d553d37 commit 5f60846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/d_deh.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ extern byte *defined_codeptr_args;
// killough 10/98: emulate IO whether input really comes from a file or not

// haleyjd: got rid of macros for MSVC
static char *dehfgets(char *str, size_t count, DEHFILE *fp)
static char *dehfgets(char *str, int count, DEHFILE *fp)
{
if (fp->file)
return fgets(str, count, fp->file);
Expand Down

0 comments on commit 5f60846

Please sign in to comment.