wined3d: Use unsigned int instead of size_t to avoid printf format warnings.

This commit is contained in:
Alexandre Julliard 2006-06-13 14:14:20 +02:00
parent fb5366c6c3
commit 836b5c7e93
1 changed files with 1 additions and 1 deletions

View File

@ -1282,7 +1282,7 @@ typedef struct shader_reg_maps {
#define SHADER_PGMSIZE 65535
typedef struct SHADER_BUFFER {
char* buffer;
size_t bsize;
unsigned int bsize;
unsigned int lineNo;
} SHADER_BUFFER;