summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-03-27 15:12:20 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-03-27 15:12:20 +0200
commit4ed9d9539469ef25c105b63a8a5274c6f5cf257a (patch)
treeb364d8acc38249336bb312590e540c55b4270b76 /HISTORY
parent9f0ac31f0dd617ae1575b230c9a4c00e17eb94c5 (diff)
downloadvdr-4ed9d9539469ef25c105b63a8a5274c6f5cf257a.tar.gz
vdr-4ed9d9539469ef25c105b63a8a5274c6f5cf257a.tar.bz2
Replaced "%lld" and "%llX" print format specifiers with "PRId64" and "PRIX64"
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY6
1 files changed, 6 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index 317deeaa..e72ae7e4 100644
--- a/HISTORY
+++ b/HISTORY
@@ -6583,3 +6583,9 @@ Video Disk Recorder Revision History
- Fixed scaling subtitles in case the OSD size is exactly the same as the display
size of the subtitles.
- Added a missing initialization to sDvbSpuRect (reported by Sergiu Dotenco).
+- Replaced "%lld" and "%llX" print format specifiers with "PRId64" and "PRIX64" to
+ avoid compiler warnings with gcc 4.5.2 (thanks to Sergiu Dotenco).
+ On a personal note: I find it a step in the totally wrong direction that there
+ have been macros introduced to work around this problem in the first place. There
+ should have been "real" format specifiers defined that address this. These macros
+ are nothing but an ugly workaround.