git » libjio » commit 13d64ea

Minor code cleanup

author Alberto Bertogli
2011-02-21 21:55:51 UTC
committer Alberto Bertogli
2011-02-21 22:08:01 UTC
parent c7d31f215f7f248fa62f35322c8afddfd114da66

Minor code cleanup

This patch contains three minor cleanups, that do not change the build result
but are purely aesthetic.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

libjio/trans.c +3 -3

diff --git a/libjio/trans.c b/libjio/trans.c
index 1f7b66f..ed76387 100644
--- a/libjio/trans.c
+++ b/libjio/trans.c
@@ -631,12 +631,12 @@ struct jfs *jopen(const char *name, int flags, int mode, unsigned int jflags)
 
 	if (!get_jdir(name, jdir))
 		goto error_exit;
-	rv = mkdir(jdir, 0750);
+	mkdir(jdir, 0750);
 	rv = lstat(jdir, &sinfo);
 	if (rv < 0 || !S_ISDIR(sinfo.st_mode))
 		goto error_exit;
 
-	fs->jdir = (char *) malloc(strlen(jdir) + 1);
+	fs->jdir = malloc(strlen(jdir) + 1);
 	if (fs->jdir == NULL)
 		goto error_exit;
 	strcpy(fs->jdir, jdir);
@@ -733,7 +733,7 @@ int jmove_journal(struct jfs *fs, const char *newpath)
 	oldpath = fs->jdir;
 	snprintf(oldjlockfile, PATH_MAX, "%s/lock", fs->jdir);
 
-	fs->jdir = (char *) malloc(strlen(newpath) + 1);
+	fs->jdir = malloc(strlen(newpath) + 1);
 	if (fs->jdir == NULL)
 		return -1;
 	strcpy(fs->jdir, newpath);