diff options
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -327,7 +327,7 @@ FindBitmap (const char *name, unsigned *widthp, unsigned *heightp) { TBPM_QUESTION, CreateQuestionPixmap }, }; - for (i = 0; i < (sizeof pmtab)/(sizeof pmtab[0]); i++) { + for (i = 0; (size_t)i < (sizeof pmtab)/(sizeof pmtab[0]); i++) { if (XmuCompareISOLatin1 (pmtab[i].name, name) == 0) return (*pmtab[i].proc) (widthp, heightp); } @@ -997,7 +997,7 @@ CreateMenuIcon (int height, unsigned *widthp, unsigned *heightp) } void -Bell(int type, int percent, Window win) +Bell(int type _X_UNUSED, int percent, Window win _X_UNUSED) { #ifdef XKB XkbStdBell(dpy, win, percent, type); |