Skip to content

Commit 5a70137

Browse files
dos1SiegeLord
authored andcommitted
acodec: ogg: Fix compiler warning about mismatched format type
1 parent 09ece37 commit 5a70137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/acodec/ogg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ ALLEGRO_SAMPLE *_al_load_ogg_vorbis_f(ALLEGRO_FILE *file)
268268

269269
buffer = al_malloc(total_size);
270270
if (!buffer) {
271-
ALLEGRO_ERROR("Unable to allocate buffer (%d).\n", total_size);
271+
ALLEGRO_ERROR("Unable to allocate buffer (%ld).\n", total_size);
272272
return NULL;
273273
}
274274

0 commit comments

Comments
 (0)