From 5f06441c06d46499743689468971ecea9e14f984 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 22 Apr 2016 16:23:46 +0200 Subject: trafgen: proto: Replace panic() with bug() where applicable In some cases we use panic() in situations where the error could only happen due to an implementation error. Use bug() there as it is more applicable, as panic() is mainly used to report system call errors. Signed-off-by: Tobias Klauser --- trafgen_l2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trafgen_l2.c') diff --git a/trafgen_l2.c b/trafgen_l2.c index e6c5b59..316d236 100644 --- a/trafgen_l2.c +++ b/trafgen_l2.c @@ -31,7 +31,7 @@ static uint16_t pid_to_eth(enum proto_id pid) case PROTO_VLAN: return ETH_P_8021Q; default: - panic("eth: Not supported protocol id %u\n", pid); + bug(); } } -- cgit v1.2.3-54-g00ecf