diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-05 15:07:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-05 15:07:22 +0000 |
commit | 7dc3df386f9b0fadc115ff55eefb8fbeb1c3077a (patch) | |
tree | c8162e48af58f6d4ee4667cd6ca6400d01a9f7e5 /protocols/Yahoo/src/libyahoo2/yahoo_util.h | |
parent | 3cd763c7a9c62bfb1c1dc43246b2199ee9427e92 (diff) |
- fix for Unicode popups;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2980 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/libyahoo2/yahoo_util.h')
-rw-r--r-- | protocols/Yahoo/src/libyahoo2/yahoo_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Yahoo/src/libyahoo2/yahoo_util.h b/protocols/Yahoo/src/libyahoo2/yahoo_util.h index b6a22dea47..10795deaed 100644 --- a/protocols/Yahoo/src/libyahoo2/yahoo_util.h +++ b/protocols/Yahoo/src/libyahoo2/yahoo_util.h @@ -25,7 +25,7 @@ #if HAVE_GLIB
# include <glib.h>
-# define FREE(x) if(x) {g_free(x); x=NULL;}
+# define FREE(x) if (x) {g_free(x); x=NULL;}
# define y_new g_new
# define y_new0 g_new0
@@ -50,7 +50,7 @@ # include <stdlib.h>
# include <stdarg.h>
-# define FREE(x) if(x) {free(x); x=NULL;}
+# define FREE(x) if (x) {free(x); x=NULL;}
# define y_new(type, n) (type *)malloc(sizeof(type) * (n))
# define y_new0(type, n) (type *)calloc((n), sizeof(type))
|