aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-01-31 19:34:25 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-01-31 19:34:25 +0000
commit1b9c5a4c6b3d98c8dfd0dec5d92644b4a463ae45 (patch)
treecf295eafa6eee3f375a85a619a9c917f5df2bcc4 /util.c
parentea5c9526eb6b47a8247680c9d1828cca01d0de06 (diff)
Add a semicolon in a win32 block of code.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1587 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 32dc58bb66..155d77434b 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.34 2000/01/29 20:04:23 guy Exp $
+ * $Id: util.c,v 1.35 2000/01/31 19:34:25 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -603,7 +603,7 @@ get_home_dir(void)
/* XXX - on NT, get the user name and append it to
"C:\winnt\profiles\"?
What about Windows 9x? */
- home = "C:"
+ home = "C:";
#else
pwd = getpwuid(getuid());
if (pwd != NULL) {