Skip to content

Commit ab8ac9c

Browse files
committed
Fix win32 sqImageFileClose; forgot to change the definition when the declaration
was changed in sqPlatformSpecific.h.
1 parent 1f626d0 commit ab8ac9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platforms/win32/plugins/FilePlugin/sqWin32FilePrims.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ size_t sqFileWriteFromAt(SQFile *f, size_t count, char* byteArrayIndex, size_t s
459459
/***************************************************************************/
460460
/* Image file functions */
461461
/***************************************************************************/
462-
sqInt sqImageFileClose(sqImageFile h)
462+
int sqImageFileClose(sqImageFile h)
463463
{
464464
SetEndOfFile((HANDLE)(h-1));
465465
return CloseHandle((HANDLE)(h-1));

0 commit comments

Comments
 (0)