Changeset 61869 in vbox for trunk/src/VBox/Frontends/Common
- Timestamp:
- Jun 24, 2016 1:47:59 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/Common/VBoxKeyboard/keyboard.c
r44797 r61869 247 247 } 248 248 } 249 LOG_KB_2(("Matches=% d, seq=%d\n", match, seq));249 LOG_KB_2(("Matches=%u, seq=%u\n", match, seq)); 250 250 if ( (match > max_score) 251 251 || ((match == max_score) && (seq > max_seq)) … … 258 258 } 259 259 /* we're done, report results if necessary */ 260 LOG_KB_1(("Detected layout is \"%s\", matches=% d, seq=%d\n",260 LOG_KB_1(("Detected layout is \"%s\", matches=%u, seq=%u\n", 261 261 main_key_tab[kbd_layout].comment, max_score, max_seq)); 262 262 return kbd_layout; … … 380 380 str[1] = shifted; 381 381 } 382 LOG_KB_1(("Warning - keycode %d, keysym \"%s\" (0x%x 0x%x) was matched to scancode % d\n",382 LOG_KB_1(("Warning - keycode %d, keysym \"%s\" (0x%x 0x%x) was matched to scancode %u\n", 383 383 keyc, str, unshifted, shifted, scan)); 384 384 } … … 398 398 } 399 399 } 400 LOG_KB_1(("Finished mapping keyboard, matches=% d, entries=%d(excluding 102nd key)\n", matches, entries));400 LOG_KB_1(("Finished mapping keyboard, matches=%u, entries=%u (excluding 102nd key)\n", matches, entries)); 401 401 if (matches != entries) 402 402 {
Note:
See TracChangeset
for help on using the changeset viewer.