summaryrefslogtreecommitdiff
path: root/location.c
diff options
context:
space:
mode:
Diffstat (limited to 'location.c')
-rw-r--r--location.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/location.c b/location.c
index 4b450ce..8e68ca3 100644
--- a/location.c
+++ b/location.c
@@ -5,6 +5,6 @@ typedef struct {
const char *filename;
} Location;
-bool location_after(Location a, Location b) { /* a is after b? */
+static bool location_after(Location a, Location b) { /* a is after b? */
return a.code > b.code;
}