diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-11-05 08:33:15 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-11-05 08:33:15 +0000 |
commit | 9079526663b0ebb3f1f8ba8baaee6868abadc50e (patch) | |
tree | 4c6dcca51202222d54a1f56d4f5cbd3cb07c7de9 /misc/iio-oscilloscope/files/patch-osc.c | |
parent | Assume maintainership of several GNU tools I've been keeping an eye to (diff) |
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)
Diffstat (limited to 'misc/iio-oscilloscope/files/patch-osc.c')
-rw-r--r-- | misc/iio-oscilloscope/files/patch-osc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/iio-oscilloscope/files/patch-osc.c b/misc/iio-oscilloscope/files/patch-osc.c new file mode 100644 index 000000000000..b078db2d8fde --- /dev/null +++ b/misc/iio-oscilloscope/files/patch-osc.c @@ -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; |