Skip to content

Commit

Permalink
include sys/stat.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ravachol committed Sep 21, 2024
1 parent 2829e18 commit b2c594e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kew.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
#include <stdio.h>
#include <string.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
#include "cache.h"
Expand Down Expand Up @@ -168,7 +169,7 @@ struct Event processInput()
{
if (strcmp(event.key, "\x7F") == 0 || strcmp(event.key, "\x08") == 0)
{
removeFromSearchText(getLibrary());
removeFromSearchText();
chosenSearchResultRow = 0;
fuzzySearch(getLibrary(), fuzzySearchThreshold);
event.type = EVENT_SEARCH;
Expand Down

0 comments on commit b2c594e

Please sign in to comment.