From: ayin Date: Mon, 27 Aug 2007 21:02:41 +0000 (+0000) Subject: Fix coding style. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=28cb28750e4b6cf1929a96d0355a8c15b7443f9b;p=dana%2Furxvt.git Fix coding style. --- diff --git a/src/xpm.C b/src/xpm.C index 76a9d2dc..acc58f3c 100644 --- a/src/xpm.C +++ b/src/xpm.C @@ -584,17 +584,17 @@ bgPixmap_t::set_file (const char *file) { # ifdef HAVE_AFTERIMAGE if (target->asimman == NULL) - target->asimman = create_generic_imageman(target->rs[Rs_path]); + target->asimman = create_generic_imageman (target->rs[Rs_path]); if ((f = strchr (file, ';')) == NULL) - original_asim = get_asimage( target->asimman, file, 0xFFFFFFFF, 100 ); + original_asim = get_asimage (target->asimman, file, 0xFFFFFFFF, 100); else { size_t len = f - file; f = (char *)malloc (len + 1); strncpy (f, file, len); f[len] = '\0'; - original_asim = get_asimage( target->asimman, f, 0xFFFFFFFF, 100 ); - free( f ); + original_asim = get_asimage (target->asimman, f, 0xFFFFFFFF, 100); + free (f); } return (original_asim != NULL); # endif