From e3ebd33e8801c5a7e2553b71851fefba83f34fe7 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 9 Jul 2012 17:18:10 +0200 Subject: [PATCH] wcap-snapshot: add return value Distro build with rpmlint aborts due to missing exit status. --- wcap/wcap-snapshot.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wcap/wcap-snapshot.c b/wcap/wcap-snapshot.c index 660a027f..01df7a28 100644 --- a/wcap/wcap-snapshot.c +++ b/wcap/wcap-snapshot.c @@ -80,4 +80,5 @@ int main(int argc, char *argv[]) decoder->width, decoder->height, i); wcap_decoder_destroy(decoder); + return EXIT_SUCCESS; }