xen/gcc6-warnings-as-errors.patch

23 lines
788 B
Diff
Raw Normal View History

References: bsc#969377 - xen does not build with GCC 6
Index: xen-4.7.0-testing/extras/mini-os-remote/lib/sys.c
===================================================================
--- xen-4.7.0-testing.orig/extras/mini-os-remote/lib/sys.c
+++ xen-4.7.0-testing/extras/mini-os-remote/lib/sys.c
@@ -634,6 +634,7 @@ int closedir(DIR *dir)
/* We assume that only the main thread calls select(). */
+#if defined(LIBC_VERBOSE) || defined(LIBC_DEBUG)
static const char file_types[] = {
[FTYPE_NONE] = 'N',
[FTYPE_CONSOLE] = 'C',
@@ -646,6 +647,7 @@ static const char file_types[] = {
[FTYPE_KBD] = 'K',
[FTYPE_FB] = 'G',
};
+#endif
#ifdef LIBC_DEBUG
static void dump_set(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout)
{