comparison mcabber/src/hbuf.c @ 1487:f61ed2466f7c

Minor style upgrade s/getprefixwidth/scr_getprefixwidth/
author Mikael Berthe <mikael@lilotux.net>
date Sun, 20 Apr 2008 17:01:24 +0200
parents f83a51eaa5ed
children 922e454a8187
comparison
equal deleted inserted replaced
1486:f83a51eaa5ed 1487:f61ed2466f7c
437 if (!fp) { 437 if (!fp) {
438 scr_LogPrint(LPRINT_NORMAL, "Unable to open the file."); 438 scr_LogPrint(LPRINT_NORMAL, "Unable to open the file.");
439 return; 439 return;
440 } 440 }
441 441
442 prefixwidth = getprefixwidth(); 442 prefixwidth = scr_getprefixwidth();
443 prefixwidth = MIN(prefixwidth, sizeof pref); 443 prefixwidth = MIN(prefixwidth, sizeof pref);
444 444
445 for (hbuf = g_list_first(hbuf); hbuf; hbuf = g_list_next(hbuf)) { 445 for (hbuf = g_list_first(hbuf); hbuf; hbuf = g_list_next(hbuf)) {
446 int maxlen; 446 int maxlen;
447 447