Accepting request 705677 from home:marxin:branches:Base:System2

- Add fix-return-function-type.patch in order to fix
  a warning.

OBS-URL: https://build.opensuse.org/request/show/705677
OBS-URL: https://build.opensuse.org/package/show/Base:System/dmraid?expand=0&rev=57
This commit is contained in:
Neil Brown 2019-05-27 23:03:03 +00:00 committed by Git OBS Bridge
parent cc316203ad
commit 0fb329d2ec
3 changed files with 24 additions and 3 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon May 27 13:05:45 UTC 2019 - Martin Liška <mliska@suse.cz>
- Add fix-return-function-type.patch in order to fix
a warning.
-------------------------------------------------------------------
Thu Nov 23 13:39:52 UTC 2017 - rbrown@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package dmraid
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@ -36,7 +36,7 @@ Requires(post): coreutils
Requires(postun): coreutils
Url: http://people.redhat.com/~heinzm/sw/dmraid/src/
Summary: A Device-Mapper Software RAID Support Tool
License: GPL-2.0
License: GPL-2.0-only
Group: System/Base
Version: 1.0.0.rc16
Release: 0
@ -55,6 +55,7 @@ Patch8: dmraid-move-var-lock-to-run-lock.patch
Patch9: dmraid-destdir.patch
Patch10: fix-undefined-symbol.patch
Patch11: 0001-remove-partitions-with-O_RDONLY.patch
Patch12: fix-return-function-type.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %fillup_prereq
@ -106,6 +107,7 @@ devices with respective mappings for the ATARAID sets discovered.
%patch9 -p1
%patch10 -p1
%patch11 -p2
%patch12 -p2
cp %{SOURCE3} .

View File

@ -0,0 +1,13 @@
diff --git a/1.0.0.rc16/tools/dmevent_tool.c b/1.0.0.rc16/tools/dmevent_tool.c
index 8562098..cffb5ab 100644
--- a/1.0.0.rc16/tools/dmevent_tool.c
+++ b/1.0.0.rc16/tools/dmevent_tool.c
@@ -123,7 +123,7 @@ void _test_user_id(void)
}
/* Increment option counters. */
-static _process_opt(int opt, const char *cmd)
+static void _process_opt(int opt, const char *cmd)
{
struct opt_def_struct {
const char opt; /* Option character. */