tc_util: No need to terminate an snprintf'ed buffer

snprintf() won't leave the buffer unterminated, so manually terminating
is not necessary here.

Signed-off-by: Phil Sutter <phil@nwl.cc>
This commit is contained in:
Phil Sutter 2017-09-01 18:52:55 +02:00 committed by Stephen Hemminger
parent 44cc6c792a
commit 9376314b49

View File

@ -434,7 +434,6 @@ static const char *action_n2a(int action)
return "trap";
default:
snprintf(buf, 64, "%d", action);
buf[63] = '\0';
return buf;
}
}