Avoid a warning on 32-bits platforms

This commit is contained in:
Pierre Pronchery 2011-02-02 06:00:54 +00:00
parent 4140d477e6
commit b80d833769

View File

@ -346,7 +346,7 @@ void editor_set_font(Editor * editor, char const * font)
/* editor_set_wrap_mode */
void editor_set_wrap_mode(Editor * editor, GtkWrapMode wrap)
{
size_t i;
unsigned int i;
char buf[10];
gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(editor->view),
@ -354,7 +354,7 @@ void editor_set_wrap_mode(Editor * editor, GtkWrapMode wrap)
for(i = 0; i < sizeof(_editor_wrap) / sizeof(*_editor_wrap); i++)
if(_editor_wrap[i].wrap == wrap)
{
snprintf(buf, sizeof(buf), "%lu", i);
snprintf(buf, sizeof(buf), "%u", i);
config_set(editor->config, NULL, "wrap", buf);
return;
}