aboutsummaryrefslogtreecommitdiff
path: root/console-tools/deallocvt.c
diff options
context:
space:
mode:
Diffstat (limited to 'console-tools/deallocvt.c')
-rw-r--r--console-tools/deallocvt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c
index 3dd90c0e9..fad7a2bb2 100644
--- a/console-tools/deallocvt.c
+++ b/console-tools/deallocvt.c
@@ -11,7 +11,7 @@
11#include <sys/ioctl.h> 11#include <sys/ioctl.h>
12 12
13/* From <linux/vt.h> */ 13/* From <linux/vt.h> */
14#define VT_DISALLOCATE 0x5608 /* free memory associated to vt */ 14static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */
15 15
16int deallocvt_main(int argc, char *argv[]) 16int deallocvt_main(int argc, char *argv[])
17{ 17{