mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 05:34:58 -05:00
Fix a format string mismatch (long vs uint64_t)
This commit is contained in:
@@ -27,6 +27,7 @@
|
|||||||
#ifdef HAVE_STDINT_H
|
#ifdef HAVE_STDINT_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <inttypes.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@@ -1052,7 +1053,7 @@ int scan_get_wmainfo(char *filename, MP3FILE *pmp3) {
|
|||||||
|
|
||||||
pguid = wma_find_guid(subhdr.objectid);
|
pguid = wma_find_guid(subhdr.objectid);
|
||||||
if(pguid) {
|
if(pguid) {
|
||||||
DPRINTF(E_DBG,L_SCAN,"%ld: Found subheader: %s\n",
|
DPRINTF(E_DBG,L_SCAN,"%" PRIu64 ": Found subheader: %s\n",
|
||||||
offset,pguid->name);
|
offset,pguid->name);
|
||||||
if(strcmp(pguid->name,"ASF_Content_Description_Object")==0) {
|
if(strcmp(pguid->name,"ASF_Content_Description_Object")==0) {
|
||||||
res &= wma_parse_content_description(fd,(int)subhdr.size,pmp3);
|
res &= wma_parse_content_description(fd,(int)subhdr.size,pmp3);
|
||||||
|
|||||||
Reference in New Issue
Block a user