* editdraw.c (status_string): Use g_snprintf() instead of

snprintf().
From Libor Motyka <l_motycka@ortex.cz>
This commit is contained in:
Pavel Roskin 2001-07-11 14:55:36 +00:00
parent 238d3dd4c2
commit 67ffae6ff2
2 changed files with 10 additions and 4 deletions

View File

@ -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

View File

@ -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>");
}