From ae70b5aecea4be08db0be06716c75b64d5420aa3 Mon Sep 17 00:00:00 2001 From: Daniel Cassidy Date: Thu, 19 Oct 2017 11:15:32 +0100 Subject: [PATCH] Fix missing return statement. --- src/swfmill.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swfmill.cpp b/src/swfmill.cpp index 5cc6230..47b18ec 100755 --- a/src/swfmill.cpp +++ b/src/swfmill.cpp @@ -456,7 +456,7 @@ int swfmill_library(int argc, char *argv[]) { return -1; } - swfmill_do_xslt(doc, transform, outfile); + return swfmill_do_xslt(doc, transform, outfile); } int main(int argc, char *argv[]) {