Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/pgoyette-compat]: src/sys/compat/linux/common Remove leading coma from l...



details:   https://anonhg.NetBSD.org/src/rev/18e980990812
branches:  pgoyette-compat
changeset: 830730:18e980990812
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Sep 19 06:56:51 2018 +0000

description:
Remove leading coma from list of required modules.  It doesn't seem
to cause any real problems, but it makes modstat output look weird.

diffstat:

 sys/compat/linux/common/linux_mod.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 06ac7731b408 -r 18e980990812 sys/compat/linux/common/linux_mod.c
--- a/sys/compat/linux/common/linux_mod.c       Wed Sep 19 06:37:11 2018 +0000
+++ b/sys/compat/linux/common/linux_mod.c       Wed Sep 19 06:56:51 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_mod.c,v 1.10.2.1 2018/09/12 07:45:56 pgoyette Exp $      */
+/*     $NetBSD: linux_mod.c,v 1.10.2.2 2018/09/19 06:56:51 pgoyette Exp $      */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.10.2.1 2018/09/12 07:45:56 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.10.2.2 2018/09/19 06:56:51 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_execfmt.h"
@@ -66,7 +66,7 @@
 # define       MD3     ""
 #endif
 
-#define REQ1    ",compat_ossaudio,sysv_ipc"
+#define REQ1    "compat_ossaudio,sysv_ipc"
 #define REQ2    ",compat_12,compat_30,compat_50,compat_43,compat_sysv_50"
 
 MODULE(MODULE_CLASS_EXEC, compat_linux, REQ1 REQ2 MD1 MD2 MD3);



Home | Main Index | Thread Index | Old Index