Module Name:    src
Committed By:   maya
Date:           Thu Oct 13 06:48:07 UTC 2016

Modified Files:
        src/sys/arch/atari/atari: le_bus.c

Log Message:
Correct misleading indentation.
While here, remove whitespace.

NFC


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/atari/atari/le_bus.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/atari/atari/le_bus.c
diff -u src/sys/arch/atari/atari/le_bus.c:1.18 src/sys/arch/atari/atari/le_bus.c:1.19
--- src/sys/arch/atari/atari/le_bus.c:1.18	Fri Jul  1 20:34:05 2011
+++ src/sys/arch/atari/atari/le_bus.c	Thu Oct 13 06:48:07 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: le_bus.c,v 1.18 2011/07/01 20:34:05 dyoung Exp $	*/
+/*	$NetBSD: le_bus.c,v 1.19 2016/10/13 06:48:07 maya Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: le_bus.c,v 1.18 2011/07/01 20:34:05 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: le_bus.c,v 1.19 2016/10/13 06:48:07 maya Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -268,10 +268,10 @@ leb_alloc_bus_space_tag(bus_space_tag_t 
 		leb_t = storage;
 	else {
 		if ((leb_t = malloc(sizeof(*leb_t), M_TEMP, M_NOWAIT)) == NULL)
-		return NULL;
+			return NULL;
 	}
 	memset(leb_t, 0, sizeof(*leb_t));
-	
+
 	leb_t->abs_p_1   = leb_bus_space_peek_1;
 	leb_t->abs_p_2   = leb_bus_space_peek_2;
 	leb_t->abs_p_4   = leb_bus_space_peek_4;

Reply via email to