]> source.dussan.org Git - tigervnc.git/commitdiff
Fix some inappropriate format specifiers
authorPierre Ossman <ossman@cendio.se>
Thu, 18 Jun 2020 12:52:19 +0000 (14:52 +0200)
committerPierre Ossman <ossman@cendio.se>
Thu, 18 Jun 2020 12:52:19 +0000 (14:52 +0200)
A "0x" prefix suggest hexadecimal values, not decimal.

vncviewer/XInputTouchHandler.cxx
vncviewer/touch.cxx

index 359802ea865bbc7226906b0a0f0708741cd5e6d9..6203bda584d731c371596dd4948eb88d4eb52ca6 100644 (file)
@@ -99,9 +99,9 @@ bool XInputTouchHandler::grabPointer()
   curmasks = XIGetSelectedEvents(fl_display, wnd, &num_masks);
   if (curmasks == NULL) {
     if (num_masks == -1)
-      vlog.error(_("Unable to get X Input 2 event mask for window 0x%08lu"), wnd);
+      vlog.error(_("Unable to get X Input 2 event mask for window 0x%08lx"), wnd);
     else
-      vlog.error(_("Window 0x%08lu has no X Input 2 event mask"), wnd);
+      vlog.error(_("Window 0x%08lx has no X Input 2 event mask"), wnd);
 
     return false;
   }
@@ -109,7 +109,7 @@ bool XInputTouchHandler::grabPointer()
   // Our windows should only have a single mask, which allows us to
   // simplify all the code handling the masks
   if (num_masks > 1) {
-    vlog.error(_("Window 0x%08lu has more than one X Input 2 event mask"), wnd);
+    vlog.error(_("Window 0x%08lx has more than one X Input 2 event mask"), wnd);
     return false;
   }
 
index a2ee3e69adc7388a6ea92145e49c026bfbfdd02e..d169deb95e088b9a06344a54c0bb17af6df41017 100644 (file)
@@ -104,14 +104,14 @@ static void x11_change_touch_ownership(bool enable)
     curmasks = XIGetSelectedEvents(fl_display, iter->first, &num_masks);
     if (curmasks == NULL) {
       if (num_masks == -1)
-        vlog.error(_("Unable to get X Input 2 event mask for window 0x%08lu"), iter->first);
+        vlog.error(_("Unable to get X Input 2 event mask for window 0x%08lx"), iter->first);
       continue;
     }
 
     // Our windows should only have a single mask, which allows us to
     // simplify all the code handling the masks
     if (num_masks > 1) {
-      vlog.error(_("Window 0x%08lu has more than one X Input 2 event mask"), iter->first);
+      vlog.error(_("Window 0x%08lx has more than one X Input 2 event mask"), iter->first);
       continue;
     }
 
@@ -135,7 +135,7 @@ bool x11_grab_pointer(Window window)
   bool ret;
 
   if (handlers.count(window) == 0) {
-    vlog.error(_("Invalid window 0x%08lu specified for pointer grab"), window);
+    vlog.error(_("Invalid window 0x%08lx specified for pointer grab"), window);
     return BadWindow;
   }
 
@@ -157,7 +157,7 @@ bool x11_grab_pointer(Window window)
 void x11_ungrab_pointer(Window window)
 {
   if (handlers.count(window) == 0) {
-    vlog.error(_("Invalid window 0x%08lu specified for pointer grab"), window);
+    vlog.error(_("Invalid window 0x%08lx specified for pointer grab"), window);
     return;
   }