Browse Source

Style fix

master
sin 10 years ago
parent
commit
1c467fce7a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c View File

@@ -516,7 +516,7 @@ forgethist(void)
{
struct history *hist;

while (!SLIST_EMPTY(&histhead)) {
while (SLIST_EMPTY(&histhead) == 0) {
hist = SLIST_FIRST(&histhead);
SLIST_REMOVE_HEAD(&histhead, entry);
free(hist);


Loading…
Cancel
Save