aboutsummaryrefslogtreecommitdiffstats
path: root/epan/filesystem.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-01-20 21:43:49 +0000
committerBill Meier <wmeier@newsguy.com>2009-01-20 21:43:49 +0000
commitb82ef98f4b592432ed81342696caafcc099c91e1 (patch)
treef85bf6b4fe904dd2cd3917e3ec3a8e6107be0720 /epan/filesystem.c
parent2f2c3aa7a5cdf7f70d88106f3084b356b7afa2b9 (diff)
Fix some indentation
svn path=/trunk/; revision=27280
Diffstat (limited to 'epan/filesystem.c')
-rw-r--r--epan/filesystem.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/filesystem.c b/epan/filesystem.c
index e1885e3806..6632eb1c82 100644
--- a/epan/filesystem.c
+++ b/epan/filesystem.c
@@ -246,22 +246,22 @@ init_progfile_dir(const char *arg0
#ifdef _WIN32
TCHAR prog_pathname_w[_MAX_PATH+2];
size_t progfile_dir_len;
- char *prog_pathname;
- DWORD error;
- TCHAR *msg_w;
- guchar *msg;
- size_t msglen;
+ char *prog_pathname;
+ DWORD error;
+ TCHAR *msg_w;
+ guchar *msg;
+ size_t msglen;
/*
* Attempt to get the full pathname of the currently running
* program.
*/
if (GetModuleFileName(NULL, prog_pathname_w, sizeof prog_pathname_w) != 0) {
- /*
- * XXX - Should we use g_utf16_to_utf8(), as in
- * getenv_utf8()?
- */
- prog_pathname = utf_16to8(prog_pathname_w);
+ /*
+ * XXX - Should we use g_utf16_to_utf8(), as in
+ * getenv_utf8()?
+ */
+ prog_pathname = utf_16to8(prog_pathname_w);
/*
* We got it; strip off the last component, which would be
* the file name of the executable, giving us the pathname