diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-02 20:55:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-02 20:55:18 +0000 |
commit | 78c0815c4118fe24ab78cce2dc48a6232dcd824a (patch) | |
tree | 8512c50df70b8dd80c919e88ade3419207c95956 /protocols/Gadu-Gadu/import.c | |
parent | ce816d83a8c75808e0eb06832592bffefe4a8dc4 (diff) |
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/import.c')
-rw-r--r-- | protocols/Gadu-Gadu/import.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Gadu-Gadu/import.c b/protocols/Gadu-Gadu/import.c index a933135baf..43a0367402 100644 --- a/protocols/Gadu-Gadu/import.c +++ b/protocols/Gadu-Gadu/import.c @@ -276,7 +276,7 @@ void gg_parsecontacts(GGPROTO *gg, char *contacts) n = strchr(p, '\n');
p = (n + 1);
}
- if(!n) p = NULL;
+ if (!n) p = NULL;
// Loadup contact
if(uin && strNick)
@@ -447,7 +447,7 @@ static INT_PTR gg_import_text(GGPROTO *gg, WPARAM wParam, LPARAM lParam) #ifdef DEBUGMODE
gg_netlog(gg, "gg_import_text()");
#endif
- if(!GetOpenFileName(&ofn)) return 0;
+ if (!GetOpenFileName(&ofn)) return 0;
f = fopen(str, "r");
_stat(str, &st);
@@ -519,7 +519,7 @@ static INT_PTR gg_export_text(GGPROTO *gg, WPARAM wParam, LPARAM lParam) #ifdef DEBUGMODE
gg_netlog(gg, "gg_export_text(%s).", str);
#endif
- if(!GetSaveFileName(&ofn)) return 0;
+ if (!GetSaveFileName(&ofn)) return 0;
if(f = fopen(str, "w"))
{
|