From: Martin Baute Date: Fri, 11 Mar 2016 07:11:21 +0000 (+0100) Subject: No return value valid code but gave warning. Fixed. X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=82c36ba715d2c440f21c501661abfeae0f507fab;ds=sidebyside No return value valid code but gave warning. Fixed. --- diff --git a/helloworld.c b/helloworld.c index bc9f993..c2c92bc 100644 --- a/helloworld.c +++ b/helloworld.c @@ -6,4 +6,5 @@ int main(int argc, char** argv) { printf("Hello world\n"); -} \ No newline at end of file + return 0; +}