mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-03 13:42:53 +03:00
* editdraw.c (status_string): Use g_snprintf() instead of
snprintf(). From Libor Motyka <l_motycka@ortex.cz>
This commit is contained in:
parent
238d3dd4c2
commit
67ffae6ff2
@ -1,3 +1,9 @@
|
||||
2001-07-11 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* editdraw.c (status_string): Use g_snprintf() instead of
|
||||
snprintf().
|
||||
From Libor Motyèka <l_motycka@ortex.cz>
|
||||
|
||||
2001-07-10 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* gtkeditkey.c (edit_translate_key): When processing bindings
|
||||
|
@ -52,10 +52,10 @@ static void status_string (WEdit * edit, char *s, int w, int fill, int font_widt
|
||||
*/
|
||||
if (edit->curs1 < edit->last_byte) {
|
||||
unsigned char cur_byte = edit_get_byte (edit, edit->curs1);
|
||||
snprintf(byte_str, sizeof(byte_str), "%c %3d 0x%02X",
|
||||
is_printable(cur_byte) ? cur_byte : '.',
|
||||
cur_byte,
|
||||
cur_byte);
|
||||
g_snprintf (byte_str, sizeof(byte_str), "%c %3d 0x%02X",
|
||||
is_printable(cur_byte) ? cur_byte : '.',
|
||||
cur_byte,
|
||||
cur_byte);
|
||||
} else {
|
||||
strcpy(byte_str, "<EOF>");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user