diff options
-rw-r--r-- | util-linux/fbset.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index b41612dc8..9423abc09 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c | |||
@@ -384,6 +384,9 @@ extern int fbset_main(int argc, char **argv) | |||
384 | case CMD_YRES: | 384 | case CMD_YRES: |
385 | varset.yres = strtoul(argv[1], 0, 0); | 385 | varset.yres = strtoul(argv[1], 0, 0); |
386 | break; | 386 | break; |
387 | case CMD_DEPTH: | ||
388 | varset.bits_per_pixel = strtoul(argv[1], 0, 0); | ||
389 | break; | ||
387 | #endif | 390 | #endif |
388 | } | 391 | } |
389 | argc -= g_cmdoptions[i].param_count; | 392 | argc -= g_cmdoptions[i].param_count; |