diff options
author | Frederic Culot <calcurse@culot.org> | 2006-12-13 09:32:22 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-12-13 09:32:22 +0000 |
commit | 86dbf7b63d23ceb27e1c8c3d15c47d4c1dcb78e1 (patch) | |
tree | 3f79f0e4656d86dbc8664ee9f1246c1046e533e0 /src/todo.c | |
parent | cf5ae67eb832aecc8f90ed3173cdd0da56184590 (diff) | |
download | calcurse-86dbf7b63d23ceb27e1c8c3d15c47d4c1dcb78e1.tar.gz calcurse-86dbf7b63d23ceb27e1c8c3d15c47d4c1dcb78e1.zip |
bugfix: call to getstring() corrected in todo_new_item()
Diffstat (limited to 'src/todo.c')
-rwxr-xr-x | src/todo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: todo.c,v 1.6 2006/11/02 13:43:36 culot Exp $ */ +/* $calcurse: todo.c,v 1.7 2006/12/13 09:32:22 culot Exp $ */ /* * Calcurse - text-based organizer @@ -45,7 +45,7 @@ int todo_new_item(int total, int colr) char todo_input[MAX_LENGTH] = ""; status_mesg(mesg, ""); - if (getstring(swin, colr, todo_input, 2, 0, 1) == 0) { + if (getstring(swin, colr, todo_input, MAX_LENGTH, 0, 1) == 0) { while ( (ch < '1') || (ch > '9') ) { status_mesg(mesg_id, ""); ch = wgetch(swin); |