mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-25 03:34:21 +03:00
Small compile fix
This commit is contained in:
parent
8f2327ecdb
commit
da82aaf5fb
@ -2547,6 +2547,9 @@ void edit_goto_cmd (WEdit *edit)
|
||||
#if 0
|
||||
f = gtk_edit_dialog_input ("goto", 150, l ? itoa (l) : "", _(" Goto line "), _(" Enter line: "));
|
||||
#else
|
||||
char s [12];
|
||||
|
||||
sprintf (s, "%d", l);
|
||||
f = input_dialog (_(" Goto line "), _(" Enter line: "), l ? s : "");
|
||||
#endif
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user