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:
parent
90ce791acb
commit
9079526663
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=516779
11
misc/iio-oscilloscope/files/patch-osc.c
Normal file
11
misc/iio-oscilloscope/files/patch-osc.c
Normal 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;
|
11
misc/iio-oscilloscope/files/patch-plugins_lidar.c
Normal file
11
misc/iio-oscilloscope/files/patch-plugins_lidar.c
Normal 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);
|
||||
|
Loading…
Reference in New Issue
Block a user