Addressing some clang warnings

This commit is contained in:
bakkeby 2024-07-16 21:42:32 +02:00
parent 4a8b71c191
commit af373aa1cc
15 changed files with 18 additions and 19 deletions

View File

@ -5,4 +5,4 @@ max_textw(void)
for (struct item *item = items; item && item->text; item++)
len = MAX(TEXTW(item->text), len);
return len;
}
}

View File

@ -1,5 +1,5 @@
static void
refreshoptions()
refreshoptions(void)
{
int dynlen = strlen(dynamic);
char* cmd= malloc(dynlen + strlen(text) + 2);
@ -88,4 +88,4 @@ readstream(FILE* stream)
text[0] = '\0';
cursor = 0;
}
}
}

View File

@ -1,2 +1,2 @@
static void refreshoptions();
static void readstream(FILE* stream);
static void refreshoptions(void);
static void readstream(FILE* stream);

View File

@ -112,4 +112,4 @@ fuzzymatch(void)
#endif // INSTANT_PATCH
calcoffsets();
}
}

View File

@ -36,4 +36,4 @@ expect(char *expect, XKeyEvent *ignored)
exit(1);
}
}
#endif // MULTI_SELECTION_PATCH
#endif // MULTI_SELECTION_PATCH

View File

@ -32,4 +32,4 @@ arrayhas(char **list, int length, char *item) {
return 1;
}
return 0;
}
}

View File

@ -1,2 +1 @@
static int arrayhas(char **list, int length, char *item);

View File

@ -32,7 +32,7 @@ printsel(unsigned int state)
}
static void
selsel()
selsel(void)
{
if (!sel)
return;
@ -50,4 +50,4 @@ selsel()
selid = realloc(selid, (selidsize + 1) * sizeof(int));
selid[selidsize - 1] = sel->id;
}
}
}

View File

@ -123,4 +123,4 @@ out:
free(history[i]);
}
free(history);
}
}

View File

@ -65,4 +65,4 @@ run(void)
if (FD_ISSET(0, &fds))
readstdin();
}
}
}

View File

@ -1 +1 @@
static void readevent();
static void readevent();

View File

@ -1,7 +1,7 @@
static char numbers[NUMBERSBUFSIZE] = "";
static void
recalculatenumbers()
recalculatenumbers(void)
{
unsigned int numer = 0, denom = 0;
struct item *item;
@ -13,4 +13,4 @@ recalculatenumbers()
for (item = items; item && item->text; item++)
denom++;
snprintf(numbers, NUMBERSBUFSIZE, "%d/%d", numer, denom);
}
}

View File

@ -1,4 +1,4 @@
#define NUMBERSMAXDIGITS 100
#define NUMBERSBUFSIZE (NUMBERSMAXDIGITS * 2) + 1
static void recalculatenumbers();
static void recalculatenumbers(void);

View File

@ -169,4 +169,4 @@ drw_text_align(Drw *drw, int x, int y, unsigned int w, unsigned int h, const cha
XftDrawDestroy(d);
return x;
}
}

View File

@ -1,3 +1,3 @@
enum { AlignL, AlignR };
int drw_text_align(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, int textlen, int align);
int drw_text_align(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, int textlen, int align);