diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2017-08-25 09:55:20 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2017-08-25 10:06:00 +0200 |
commit | 94fa1e382f1258c8f782380e3de12260aa4e9b96 (patch) | |
tree | 9f679927ae0946d11e3b8f60d84612f226206e21 /src | |
parent | 2e70077bbccc038df8debf3f297da7b8818ba5fc (diff) | |
download | libssh-94fa1e382f1258c8f782380e3de12260aa4e9b96.tar.gz libssh-94fa1e382f1258c8f782380e3de12260aa4e9b96.tar.xz libssh-94fa1e382f1258c8f782380e3de12260aa4e9b96.zip |
match: Add missing return statement
This makey the compiler happy.
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/match.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/match.c b/src/match.c index 53620bdd..36cc922a 100644 --- a/src/match.c +++ b/src/match.c @@ -109,6 +109,7 @@ static int match_pattern(const char *s, const char *pattern) { } /* NOTREACHED */ + return 0; } /* |