From 3e70e641534a8a05937ae40a3d2a5b08be589396 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 11 Sep 2014 23:53:05 -0700 Subject: [PATCH] webpmux: fix indent + remove unnecessary cast (cherry picked from commit 6986bb5e125287b6f36550807abdbd3a3c2a84f3) Change-Id: I2070fbe6aeda49f5790c69390e5b539a2c1a5616 --- examples/webpmux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/webpmux.c b/examples/webpmux.c index 440ed71f..87205908 100644 --- a/examples/webpmux.c +++ b/examples/webpmux.c @@ -948,7 +948,7 @@ static int Process(const WebPMuxConfig* config) { } ok = !parse_error; if (!ok) goto Err2; - params.loop_count = (int)loop_count; + params.loop_count = loop_count; break; } case SUBTYPE_ANMF: { @@ -1048,8 +1048,8 @@ static int Process(const WebPMuxConfig* config) { ErrorString(err), kDescriptions[feature->type_], Err2); } } else { - ERROR_GOTO1("ERROR: Invalid feature for action 'strip'.\n", Err2); - break; + ERROR_GOTO1("ERROR: Invalid feature for action 'strip'.\n", Err2); + break; } ok = WriteWebP(mux, config->output_); break;