summaryrefslogtreecommitdiff
path: root/src/sp_utils.h
diff options
context:
space:
mode:
authorjvoisin2020-11-06 16:51:41 +0100
committerjvoisin2020-11-06 16:51:41 +0100
commit69459369754b07d3fa4379c2b60a5f8ba9fcd45d (patch)
treed524bbf116122533bb0f8b30ec442b9849f32b1c /src/sp_utils.h
parent8470b432b50cc37d4b4782930476aa0acf137080 (diff)
Use proper prototype declaration
Diffstat (limited to 'src/sp_utils.h')
-rw-r--r--src/sp_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.h b/src/sp_utils.h
index 744bbff..24571ee 100644
--- a/src/sp_utils.h
+++ b/src/sp_utils.h
@@ -53,7 +53,7 @@
53 53
54#define GET_SUFFIX(x) (x == 1) ? "st" : ((x == 2) ? "nd" : "th") 54#define GET_SUFFIX(x) (x == 1) ? "st" : ((x == 2) ? "nd" : "th")
55 55
56const char *get_ipaddr(); 56const char *get_ipaddr(void);
57void sp_log_msgf(char const *restrict feature, int level, int type, 57void sp_log_msgf(char const *restrict feature, int level, int type,
58 const char *restrict fmt, ...); 58 const char *restrict fmt, ...);
59int compute_hash(const char *const restrict filename, char *restrict file_hash); 59int compute_hash(const char *const restrict filename, char *restrict file_hash);