GNOME Bugzilla – Bug 752053
goom: Initialised variables to remove compiler warnings
Last modified: 2015-08-16 13:39:22 UTC
Created attachment 306982 [details] [review] patch goom_core.c: In function 'goom_update': goom_core.c:685:5: error: 'param2' may be used uninitialized in this function [-Werror=maybe-uninitialized] goom_lines_switch_to (goomInfo->gmline2, mode, param2, amplitude, couleur); ^ goom_core.c:684:5: error: 'param1' may be used uninitialized in this function [-Werror=maybe-uninitialized] goom_lines_switch_to (goomInfo->gmline1, mode, param1, amplitude, couleur);
commit 6faeb751708730a19f2ac9322b62afa4b086cc57 Author: Tobias Mueller <muelli@cryptobitch.de> Date: Thu Jul 2 08:52:43 2015 +0200 goom: Initialised variables to remove compiler warnings goom_core.c: In function 'goom_update': goom_core.c:685:5: error: 'param2' may be used uninitialized in this function [-Werror=maybe-uninitialized] goom_lines_switch_to (goomInfo->gmline2, mode, param2, amplitude, couleur); ^ goom_core.c:684:5: error: 'param1' may be used uninitialized in this function [-Werror=maybe-uninitialized] goom_lines_switch_to (goomInfo->gmline1, mode, param1, amplitude, couleur); ^ https://bugzilla.gnome.org/show_bug.cgi?id=752053