aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 04e4d90..e21f7b1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -280,8 +280,8 @@ static int str_has_suffix(const char *str, const char *suffix)
}
/* Compute something that identifies the content of FILE. Algorithm by Dan
- Bernstein from http://www.cse.yorku.ca/~oz/hash.html via
- https://stackoverflow.com/a/7666577/20138083. */
+ * Bernstein from http://www.cse.yorku.ca/~oz/hash.html via
+ * https://stackoverflow.com/a/7666577/20138083. */
static uint32_t sum(const char *file)
{
FILE *stream = fopen(file, "r");