Skip to content

Commit

Permalink
Merge pull request #526 from OronDF343/master
Browse files Browse the repository at this point in the history
Fix test-interface compilation error for MSVC x64
  • Loading branch information
jonsneyers authored Sep 3, 2021
2 parents 7041bf4 + 7792e58 commit e8cc6c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ typedef struct RGBA
https://code.google.com/archive/p/msinttypes/
*/
#if defined(_MSC_VER)
#define F_I_FILE_SIZE "%lu"
#define F_I_FILE_SIZE "lu"
#if defined(_WIN64)
#define F_BLOB_SIZE_T "%I64u"
#define F_BLOB_SIZE_T "I64u"
#else
#define F_BLOB_SIZE_T "PRIu32"
#endif
Expand Down

0 comments on commit e8cc6c1

Please sign in to comment.