Skip to content
Snippets Groups Projects
Commit 8c6a5d92 authored by scott snyder's avatar scott snyder
Browse files

MuonNSWCommonDecode: Uninitialized variable warnings.

Fix warnings about possible use of uninitialized variables seen
in the lto build.
parent 0296e984
No related branches found
No related tags found
No related merge requests found
Pipeline #3939723 passed
......@@ -15,9 +15,9 @@ static const int ERR_ARGS = -1;
// Global parameters
struct Params {
uint32_t detector_id;
uint16_t vmm_number;
uint16_t vmm_channel;
uint32_t detector_id = 0;
uint16_t vmm_number = 0;
uint16_t vmm_channel = 0;
};
void test_nsw_online2offline_help (char *progname)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment