Changeset 46039 in vbox
- Timestamp:
- May 13, 2013 7:18:20 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxvideo/vboxutils.c
r44528 r46039 490 490 /* And finally any modes specified by the user. We assume here that 491 491 * the mode names reflect the mode sizes. */ 492 for (unsigned i = 0; pScrn->display->modes != NULL493 && pScrn->display->modes[i] != NULL; i++)492 unsigned i; 493 for (i = 0; pScrn->display->modes && pScrn->display->modes[i]; i++) 494 494 { 495 495 if (sscanf(pScrn->display->modes[i], "%ux%u", &cx, &cy) == 2)
Note:
See TracChangeset
for help on using the changeset viewer.