[dm-devel] dmraid/lib/misc file.c

heinzm at sourceware.org heinzm at sourceware.org
Mon Jan 11 16:19:30 UTC 2010


CVSROOT:	/cvs/dm
Module name:	dmraid
Changes by:	heinzm at sourceware.org	2010-01-11 16:19:29

Modified files:
	lib/misc       : file.c 

Log message:
	Correct indentation and remove some empty lines

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/dmraid/lib/misc/file.c.diff?cvsroot=dm&r1=1.3&r2=1.4

--- dmraid/lib/misc/file.c	2008/06/20 21:52:18	1.3
+++ dmraid/lib/misc/file.c	2010/01/11 16:19:29	1.4
@@ -32,7 +32,6 @@
 	} while (s);
 
 	dbg_free(orig);
-
 	return ret;
 }
 
@@ -62,9 +61,9 @@
 		ssize_t(*func) ();
 		const char *what;
 	} rw_spec[] = {
-		{
-		read, "read"}, {
-	write, "writ"},}, *rw = rw_spec + ((flags & O_WRONLY) ? 1 : 0);
+		{ read, "read"},
+		{ write, "writ"},
+	}, *rw = rw_spec + ((flags & O_WRONLY) ? 1 : 0);
 
 	if ((fd = open(path, flags, lc->mode)) == -1)
 		LOG_ERR(lc, 0, "opening \"%s\"", path);
@@ -84,7 +83,6 @@
 		ret = 1;
 
 	close(fd);
-
 	return ret;
 }
 




More information about the dm-devel mailing list