formatting
authorcaro <caro>
Fri, 9 Oct 2009 05:38:52 +0000 (05:38 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 9 Oct 2009 05:38:52 +0000 (05:38 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@42979 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/Eet_private.h
src/lib/eet_lib.c

index 0d6ed75..583bca8 100644 (file)
@@ -90,27 +90,27 @@ extern int _eet_log_dom_global;
  * the first four macros are the general macros for the lib
  */
 #ifdef EET_DEFAULT_LOG_COLOR
-#undef EET_DEFAULT_LOG_COLOR
+# undef EET_DEFAULT_LOG_COLOR
 #endif
 #define EET_DEFAULT_LOG_COLOR EINA_COLOR_CYAN
 #ifdef ERR
-#undef ERR
+# undef ERR
 #endif
 #define ERR(...) EINA_LOG_DOM_ERR(_eet_log_dom_global, __VA_ARGS__)
 #ifdef DBG
-#undef DBG
+# undef DBG
 #endif
 #define DBG(...) EINA_LOG_DOM_DBG(_eet_log_dom_global, __VA_ARGS__)
 #ifdef INF
-#undef INF
+# undef INF
 #endif
 #define INF(...) EINA_LOG_DOM_INFO(_eet_log_dom_global, __VA_ARGS__)
 #ifdef WRN
-#undef WRN
+# undef WRN
 #endif
 #define WRN(...) EINA_LOG_DOM_WARN(_eet_log_dom_global, __VA_ARGS__)
 #ifdef CRIT
-#undef CRIT
+# undef CRIT
 #endif
 #define CRIT(...) EINA_LOG_DOM_CRIT(_eet_log_dom_global, __VA_ARGS__)
 
index 42ca483..ef49917 100644 (file)
@@ -734,7 +734,7 @@ eet_init(void)
 
    if (!eina_init())
      {
-       fprintf(stderr,"Eet: Eina init failed");
+       fprintf(stderr, "Eet: Eina init failed");
        return --eet_init_count;
      }
    _eet_log_dom_global = eina_log_domain_register("Eet", EET_DEFAULT_LOG_COLOR);