aboutsummaryrefslogtreecommitdiff
path: root/file_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'file_loader.h')
-rw-r--r--file_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_loader.h b/file_loader.h
index cfe8701..1e76357 100644
--- a/file_loader.h
+++ b/file_loader.h
@@ -6,14 +6,14 @@
#include <stdio.h>
-struct allocated_op_s; // declared in types.h
+struct allocated_pat_s; // declared in types.h
typedef struct file_s {
struct file_s *next;
const char *filename;
char *contents, **lines, *end;
size_t nlines;
- struct allocated_op_s *ops;
+ struct allocated_pat_s *ops;
unsigned int mmapped:1;
} file_t;