aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-20 21:43:49 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-20 21:43:49 +0000
commite43ebf0e828b33159c3e8242d8e9ef9e00ea2d4d (patch)
treef85bf6b4fe904dd2cd3917e3ec3a8e6107be0720 /epan
parent9833224eebf66469cefcca22a9fb09b21d814ff9 (diff)
Fix some indentation
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27280 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-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