From 57b43d84f95880f0e393ff9ef9e2c351517d1628 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 10 Jun 2013 23:08:42 +0200 Subject: [PATCH] retab! get_exe_path.c We seriously need auto-formatting. --- libi3/get_exe_path.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libi3/get_exe_path.c b/libi3/get_exe_path.c index a308e242..32fa544b 100644 --- a/libi3/get_exe_path.c +++ b/libi3/get_exe_path.c @@ -13,8 +13,8 @@ * */ const char *get_exe_path(const char *argv0) { - static char destpath[PATH_MAX]; - char tmp[PATH_MAX]; + static char destpath[PATH_MAX]; + char tmp[PATH_MAX]; #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) /* Linux and Debian/kFreeBSD provide /proc/self/exe */ @@ -23,9 +23,9 @@ const char *get_exe_path(const char *argv0) { #elif defined(__FreeBSD__) const char *exepath = "/proc/curproc/file"; #endif - ssize_t linksize; + ssize_t linksize; - if ((linksize = readlink(exepath, destpath, sizeof(destpath) - 1)) != -1) { + if ((linksize = readlink(exepath, destpath, sizeof(destpath) - 1)) != -1) { /* readlink() does not NULL-terminate strings, so we have to. */ destpath[linksize] = '\0'; @@ -39,7 +39,7 @@ const char *get_exe_path(const char *argv0) { /* if argv[0] contains a /, prepend the working directory */ if (strchr(argv0, '/') != NULL && - getcwd(tmp, sizeof(tmp)) != NULL) { + getcwd(tmp, sizeof(tmp)) != NULL) { snprintf(destpath, sizeof(destpath), "%s/%s", tmp, argv0); return destpath; }