freebsd-ports/misc/iio-oscilloscope/files/patch-plugins_lidar.c
Piotr Kubaj 9079526663 misc/iio-oscilloscope: fix build on GCC architectures
Build fails with base GCC:
cc1: warnings being treated as errors
/wrkdirs/usr/ports/misc/iio-oscilloscope/work/iio-oscilloscope-0.10-master-28-g9b9a441/osc.c: In function 'plugin_data_capture_of_plot':
/wrkdirs/usr/ports/misc/iio-oscilloscope/work/iio-oscilloscope-0.10-master-28-g9b9a441/osc.c:576: warning: 'markers_lock' may be used uninitialized in this function

PR:             241622
Approved by:    yuri (maintainer), linimon (mentor)
2019-11-05 08:33:15 +00:00

11 lines
369 B
C

--- plugins/lidar.c.orig 2019-10-31 18:10:53 UTC
+++ plugins/lidar.c
@@ -112,7 +112,7 @@ static void auto_cfg_set_cb(void)
static void auto_cfg_button_changed_cb(GtkSpinButton *btn)
{
// Force the buttons value to have a valid permutation of (0, 1, 2, 3)
- int i, j, idx;
+ int i, j, idx = 0;
int old_val;
int crt_val = gtk_spin_button_get_value_as_int(btn);