diff options
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch')
| -rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch b/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch deleted file mode 100644 index c137bc8a28..0000000000 --- a/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | Upstream-Status: Backport | ||
| 2 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 3 | |||
| 4 | From a861bdabf02cd9bfb3ec7c0571c563c0fa14adfb Mon Sep 17 00:00:00 2001 | ||
| 5 | From: Khem Raj <raj.khem@gmail.com> | ||
| 6 | Date: Tue, 24 Apr 2018 12:24:32 -0700 | ||
| 7 | Subject: [PATCH] us428control: Fix clang -Wreserved-user-defined-literal | ||
| 8 | warnings | ||
| 9 | |||
| 10 | | us428control.cc:66:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] | ||
| 11 | | printf("usage: "PROGNAME" [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 12 | | ^ | ||
| 13 | |||
| 14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 15 | Signed-off-by: Takashi Iwai <tiwai@suse.de> | ||
| 16 | --- | ||
| 17 | us428control/us428control.cc | 2 +- | ||
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/us428control/us428control.cc b/us428control/us428control.cc | ||
| 21 | index e839bf4..8cb3c42 100644 | ||
| 22 | --- a/us428control/us428control.cc | ||
| 23 | +++ b/us428control/us428control.cc | ||
| 24 | @@ -63,7 +63,7 @@ static void usage(void) | ||
| 25 | { | ||
| 26 | printf("Tascam US-428 Control\n"); | ||
| 27 | printf("version %s\n", VERSION); | ||
| 28 | - printf("usage: "PROGNAME" [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 29 | + printf("usage: " PROGNAME " [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 30 | printf("mode is one of (us224, us428, mixxx)\n"); | ||
| 31 | } | ||
| 32 | /* | ||
| 33 | -- | ||
| 34 | 1.7.11.7 | ||
