diff options
author | horchi <vdr@jwendel.de> | 2018-10-03 10:45:40 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-10-03 10:45:40 +0200 |
commit | 02fe82df754d3ec5a0a68a5fe1c0a020863afdf3 (patch) | |
tree | 527b611f1a6154206babf433c0f504f567be40c2 /PLUGINS | |
parent | bd6ac8b88a6e128ad8778aad89f5d8c3f31148de (diff) | |
download | vdr-epg-daemon-02fe82df754d3ec5a0a68a5fe1c0a020863afdf3.tar.gz vdr-epg-daemon-02fe82df754d3ec5a0a68a5fe1c0a020863afdf3.tar.bz2 |
2018-10-03: version 1.1.144 (horchi)\n change: Fixed g++-8 warnings\n\n1.1.144
Diffstat (limited to 'PLUGINS')
-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 |