Skip to content

Commit

Permalink
Fixed signed/unsigned mismatch in CCmdListFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Sep 14, 2011
1 parent eeea7cd commit 9b7d38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/fs_main.c
Expand Up @@ -2256,7 +2256,7 @@ D_CMD(ListFiles)
size_t totalFiles = 0, totalPackages = 0;
if(inited)
{
uint fileCount, i;
int fileCount, i;
abstractfile_t** ptr, **arr = FileList_ToArray(loadedFiles, &fileCount);
if(!arr) return true;

Expand Down

0 comments on commit 9b7d38b

Please sign in to comment.