summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-04-17 07:52:31 -0400
committerAllen Winter <allen.winter@kdab.com>2021-04-17 07:52:31 -0400
commita07e3cd3b2bf213b5065cde15d0a3de73d767535 (patch)
tree9954c5d99dd87032bfbc652a49e72641fbb7ca4d
parent7cf78a60cf07c146da159aa5eb27f5ecc268f3ad (diff)
downloadlibical-git-a07e3cd3b2bf213b5065cde15d0a3de73d767535.tar.gz
src/test/stow.c - return in main to avoid -Werror=return-type
makes travis happy
-rw-r--r--src/test/stow.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/stow.c b/src/test/stow.c
index 3621aba7..a02186ac 100644
--- a/src/test/stow.c
+++ b/src/test/stow.c
@@ -867,4 +867,6 @@ int main(int argc, char *argv[])
store, and will be freed there */
byebye(0, &opt);
+
+ return(0); //to avoid -Werror=return-type
}