diff options
Diffstat (limited to 'PLUGINS/epgdata')
-rw-r--r-- | PLUGINS/epgdata/epgdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PLUGINS/epgdata/epgdata.c b/PLUGINS/epgdata/epgdata.c index d368d30..9ad4b35 100644 --- a/PLUGINS/epgdata/epgdata.c +++ b/PLUGINS/epgdata/epgdata.c @@ -196,7 +196,7 @@ int Epgdata::initDb() stat(file, &sb); free(file); - asprintf(&tag, "%ld", sb.st_size); + asprintf(&tag, "%" PRId64, sb.st_size); asprintf(&fileRef, "%s-%s", dp->d_name, tag); // store file and let tag NULL to indicate that processing is needed |