1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

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)
This commit is contained in:
Piotr Kubaj 2019-11-05 08:33:15 +00:00
parent 90ce791acb
commit 9079526663
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=516779
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- osc.c.orig 2019-10-31 18:10:02 UTC
+++ osc.c
@@ -573,7 +573,7 @@ int plugin_data_capture_of_plot(OscPlot *plot, const c
struct iio_device *dev, *tmp_dev = NULL;
struct extra_dev_info *dev_info;
struct marker_type *markers_copy = NULL;
- GMutex *markers_lock;
+ GMutex *markers_lock = NULL;
unsigned int i, j;
bool new = FALSE;
const char *tmp = NULL;

View File

@ -0,0 +1,11 @@
--- 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);