From d2257911e04acab410134d1a3ed79fa569dd941d Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 1 Mar 2014 15:54:43 -0500 Subject: Fix some warnings found by higher warning levels than -Wall. --- libdimension/profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdimension/profile.c') diff --git a/libdimension/profile.c b/libdimension/profile.c index fcbb423..308c8fb 100644 --- a/libdimension/profile.c +++ b/libdimension/profile.c @@ -125,12 +125,12 @@ dmnsn_expect(bool result, bool expected, const char *func, const char *file, ++branch->predicted; } } else { - dmnsn_branch branch = { + dmnsn_branch new_branch = { .location = dmnsn_strdup(key), .predicted = (result == expected) ? 1 : 0, .branches = 1 }; - dmnsn_dictionary_insert(thread_profile, key, &branch); + dmnsn_dictionary_insert(thread_profile, key, &new_branch); } return result; -- cgit v1.2.3