Skip to content

Commit ca034ab

Browse files
committed
Fix format specifier for size_t
1 parent ccf7714 commit ca034ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vertex-buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ vertex_buffer_print( vertex_buffer_t * self )
196196

197197
assert(self);
198198

199-
log_error( "%ld vertices, %ld indices\n",
199+
log_error( "%zd vertices, %zd indices\n",
200200
vector_size( self->vertices ), vector_size( self->indices ) );
201201
while( self->attributes[i] )
202202
{

0 commit comments

Comments
 (0)