summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-03-26 09:27:30 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-03-26 09:27:30 +0200
commit1fe46dfa9faf971fee27870a49f652485e52647a (patch)
treeb9ab0238825442c042a781ffd5c5d01462fe5f1c /vdr.c
parent8a3dae1e8bc3c008abc425c026f1c1bdf1ce026d (diff)
downloadvdr-1fe46dfa9faf971fee27870a49f652485e52647a.tar.gz
vdr-1fe46dfa9faf971fee27870a49f652485e52647a.tar.bz2
Fixed format string handling
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr.c b/vdr.c
index 62e17fa3..7ff749bf 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/vdr
*
- * $Id: vdr.c 1.250 2006/03/19 13:29:49 kls Exp $
+ * $Id: vdr.c 1.251 2006/03/26 09:16:53 kls Exp $
*/
#include <getopt.h>
@@ -1067,7 +1067,7 @@ int main(int argc, char *argv[])
}
if (UserShutdown && Next && Delta <= Setup.MinEventTimeout * 60 && !ForceShutdown) {
char *buf;
- asprintf(&buf, tr("Recording in %d minutes, shut down anyway?"), Delta / 60);
+ asprintf(&buf, tr("Recording in %ld minutes, shut down anyway?"), Delta / 60);
if (Interface->Confirm(buf))
ForceShutdown = true;
else