From 83e051ce6e26fa5626d12e0bd1e01d1af33e040b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 15 Jul 2011 15:49:49 +0200 Subject: [PATCH] main.c: Initialize byte_count with 0. It is never used though. --- host/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/main.c b/host/main.c index 0007f09..a913d1d 100644 --- a/host/main.c +++ b/host/main.c @@ -140,7 +140,7 @@ int main(int argc, char **argv) char *gsmtap_host = "127.0.0.1"; int rc, c; int skip_atr = 0; - unsigned int msg_count, byte_count; + unsigned int msg_count, byte_count = 0; print_welcome();