WARNING: Unnecessary space before function pointer arguments

Signed-off-by: Paul McQuade <paulmcq...@gmail.com>
---
 ipc/util.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ipc/util.h b/ipc/util.h
index 0dbb554..e426d42 100644
--- a/ipc/util.h
+++ b/ipc/util.h
@@ -78,9 +78,9 @@ struct ipc_params {
  *      . routine to call for an extra check if needed
  */
 struct ipc_ops {
-       int (*getnew) (struct ipc_namespace *, struct ipc_params *);
-       int (*associate) (struct kern_ipc_perm *, int);
-       int (*more_checks) (struct kern_ipc_perm *, struct ipc_params *);
+       int (*getnew)(struct ipc_namespace *, struct ipc_params *);
+       int (*associate)(struct kern_ipc_perm *, int);
+       int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *);
 };
 
 struct seq_file;
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to