From 8c44da9d9b758fac4eabdffbb6a1d1cbf3bc7583 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 9 May 2014 15:03:14 +0200 Subject: [PATCH] trafgen: Remove unnecessary initialization of ct.reserve_size It will be set later on depending on command line option (or panic() out) and it is initialized to 0 by a memset() before anyways. Signed-off-by: Tobias Klauser --- trafgen.c | 1 - 1 file changed, 1 deletion(-) diff --git a/trafgen.c b/trafgen.c index 43148b7f..419988eb 100644 --- a/trafgen.c +++ b/trafgen.c @@ -995,7 +995,6 @@ int main(int argc, char **argv) break; case 'S': ptr = optarg; - ctx.reserve_size = 0; for (j = i = strlen(optarg); i > 0; --i) { if (!isdigit(optarg[j - i])) -- 2.11.4.GIT