From ee5cda74ba34ed8e7d59e12cac9291538999a2ad Mon Sep 17 00:00:00 2001 From: pabr Date: Tue, 27 Mar 2018 12:23:19 +0200 Subject: [PATCH] Fix uninitialized member. --- src/apps/leaniiotx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/leaniiotx.cc b/src/apps/leaniiotx.cc index 4535fe9..d9cd4fb 100644 --- a/src/apps/leaniiotx.cc +++ b/src/apps/leaniiotx.cc @@ -34,7 +34,7 @@ struct config { int nbufs; // 0 for default int bufsize; bool verbose, debug; - config() : Flo(2449e6), Fm(0), Fs(2.5e6), bufsize(64*1024), + config() : Flo(2449e6), Fm(0), Fs(2.5e6), nbufs(0), bufsize(64*1024), verbose(false), debug(false) { } };