diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/geometry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry.c b/src/geometry.c index 9c3eec65..749f3a4c 100644 --- a/src/geometry.c +++ b/src/geometry.c @@ -231,7 +231,7 @@ static int change_geometry_ncurses(disk_t *disk_car) case 'H': { sprintf(def, "%u", disk_car->geom.heads_per_cylinder); - mvwaddstr(stdscr,INTER_GEOM_Y, INTER_GEOM_X, "Enter the number of heads: "); + mvwaddstr(stdscr,INTER_GEOM_Y, INTER_GEOM_X, "Enter the number of heads (1-255): "); wclrtoeol(stdscr); if (get_string(stdscr, response, sizeof(response), def) > 0) { tmp_val = atoi(response); |