Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit bf5e1f1

Browse files
William Douglasbryteise
authored andcommitted
Fix missing header
Header file ordering hid a missing list structure definition. Signed-off-by: William Douglas <[email protected]>
1 parent 436fb50 commit bf5e1f1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/swupd_lib/heuristics.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include <unistd.h>
2828

2929
#include "heuristics.h"
30-
#include "swupd.h"
3130

3231
typedef int (*compare_fn_t)(const char *s1, const char *s2);
3332
typedef void (*apply_fn_t)(struct file *f);

src/swupd_lib/heuristics.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
#include <stdbool.h>
1111
#include <stdint.h>
1212

13+
#include "swupd.h"
14+
1315
#ifdef __cplusplus
1416
extern "C" {
1517
#endif

0 commit comments

Comments
 (0)