From 46c3eeba2af934d741a1375e22588902b36fd517 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 20 Dec 2006 22:17:44 +0000 Subject: [PATCH] Fix definition of KEY_END --- src/include/gpxe/keys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/gpxe/keys.h b/src/include/gpxe/keys.h index 66f8d51d..7a0b5101 100644 --- a/src/include/gpxe/keys.h +++ b/src/include/gpxe/keys.h @@ -65,7 +65,7 @@ #define KEY_DOWN KEY_ANSI ( 'B' ) /**< Down arrow */ #define KEY_RIGHT KEY_ANSI ( 'C' ) /**< Right arrow */ #define KEY_LEFT KEY_ANSI ( 'D' ) /**< Left arrow */ -#define KEY_END KEY_ANSI ( 'E' ) /**< End */ +#define KEY_END KEY_ANSI ( 'F' ) /**< End */ #define KEY_HOME KEY_ANSI ( 'H' ) /**< Home */ #define KEY_IC KEY_ANSI ( '2' ) /**< Insert */ #define KEY_DC KEY_ANSI ( '3' ) /**< Delete */