summaryrefslogtreecommitdiffstats
path: root/src/server/helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/helper.h')
-rw-r--r--src/server/helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/helper.h b/src/server/helper.h
index 4ab2134..389a98c 100644
--- a/src/server/helper.h
+++ b/src/server/helper.h
@@ -33,7 +33,7 @@ static inline bool isSameAddressPort(const dnbd3_host_t * const a, const dnbd3_h
* Test whether string ends in suffix.
* @return true if string =~ /suffix$/
*/
-static inline int strend(char *string, char *suffix)
+static inline bool strend(char *string, char *suffix)
{
if ( string == NULL ) return false;
if ( suffix == NULL || *suffix == '\0' ) return true;