aboutsummaryrefslogtreecommitdiff
path: root/src/hotload.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hotload.c')
-rw-r--r--src/hotload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hotload.c b/src/hotload.c
index fc06a9b..d7a5ff2 100644
--- a/src/hotload.c
+++ b/src/hotload.c
@@ -41,10 +41,10 @@ file_name(const char *file)
return name;
}
-internal struct watch_info *
+internal struct watched_file *
hotloader_watched_file(struct hotloader *hotloader, char *absolutepath)
{
- struct watch_info *result = NULL;
+ struct watched_file *result = NULL;
for(unsigned index = 0; result == NULL && index < hotloader->watch_count; ++index) {
struct watched_file *watch_info = hotloader->watch_list + index;