aboutsummaryrefslogtreecommitdiff
path: root/console-tools/chvt.c
diff options
context:
space:
mode:
Diffstat (limited to 'console-tools/chvt.c')
-rw-r--r--console-tools/chvt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c
index b1a429eb3..252aed740 100644
--- a/console-tools/chvt.c
+++ b/console-tools/chvt.c
@@ -29,8 +29,10 @@
29#include "busybox.h" 29#include "busybox.h"
30 30
31/* From <linux/vt.h> */ 31/* From <linux/vt.h> */
32static const int VT_ACTIVATE = 0x5606; /* make vt active */ 32enum {
33static const int VT_WAITACTIVE = 0x5607; /* wait for vt active */ 33 VT_ACTIVATE = 0x5606, /* make vt active */
34 VT_WAITACTIVE = 0x5607 /* wait for vt active */
35};
34 36
35int chvt_main(int argc, char **argv) 37int chvt_main(int argc, char **argv)
36{ 38{