From: Mike Brady Date: Sun, 16 Apr 2017 19:47:55 +0000 (+0100) Subject: Fix an inconsequential warning showing up in clang X-Git-Tag: 3.1.d6~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=637072858f2b5643411965a73de113885e4fe747;p=thirdparty%2Fshairport-sync.git Fix an inconsequential warning showing up in clang --- diff --git a/apple_alac.cpp b/apple_alac.cpp index 0ee30290..6d543b2e 100644 --- a/apple_alac.cpp +++ b/apple_alac.cpp @@ -52,4 +52,7 @@ extern "C" int apple_alac_decode_frame(unsigned char *sampleBuffer, uint32_t buf return 0; } -extern "C" int apple_alac_terminate() { delete (theDecoder); } +extern "C" int apple_alac_terminate() { + delete (theDecoder); + return 0; +}