aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2010-08-26 17:18:44 +0000
committerGerald Combs <gerald@wireshark.org>2010-08-26 17:18:44 +0000
commit88a0298183a5ed4d631eb00a9ee7b597841041ff (patch)
tree48ff4d23e2d1b7a320cdb0bd7d83d8a23a2f0063 /wsutil
parent1c2b3b0eb9cf2549a033b331438b4afc687383be (diff)
Add a newline. Fixup whitespace.
svn path=/trunk/; revision=33933
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/file_util.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/wsutil/file_util.c b/wsutil/file_util.c
index 0c57efbe19..160272c0bf 100644
--- a/wsutil/file_util.c
+++ b/wsutil/file_util.c
@@ -267,7 +267,7 @@ ws_stdio_stat (const gchar *filename,
*
* Since: 2.6
*/
-
+
int
ws_stdio_unlink (const gchar *filename)
{
@@ -447,7 +447,7 @@ ws_stdio_freopen (const gchar *filename,
static gboolean
init_dll_load_paths() {
TCHAR path_pfx[MAX_PATH];
-
+
if (program_path && system_path)
return TRUE;
@@ -471,7 +471,7 @@ init_dll_load_paths() {
if (program_path && system_path)
return TRUE;
- return FALSE;
+ return FALSE;
}
/*
@@ -493,7 +493,7 @@ ws_load_library(gchar *library_name) {
/* First try the program directory */
full_path = g_module_build_path(program_path, library_name);
full_path_w = g_utf8_to_utf16(full_path, -1, NULL, NULL, NULL);
-
+
if (full_path && full_path_w) {
dll_h = LoadLibraryW(full_path_w);
if (dll_h) {
@@ -529,7 +529,7 @@ ws_module_open(gchar *module_name, GModuleFlags flags) {
/* First try the program directory */
full_path = g_module_build_path(program_path, module_name);
-
+
if (full_path) {
mod = g_module_open(full_path, flags);
if (mod) {
@@ -540,7 +540,7 @@ ws_module_open(gchar *module_name, GModuleFlags flags) {
/* Next try the system directory */
full_path = g_module_build_path(system_path, module_name);
-
+
if (full_path) {
mod = g_module_open(full_path, flags);
if (mod) {
@@ -550,4 +550,4 @@ ws_module_open(gchar *module_name, GModuleFlags flags) {
}
return NULL;
-} \ No newline at end of file
+}