TCF Agent: fixed code formatting
diff --git a/agent/tcf/framework/trace.h b/agent/tcf/framework/trace.h
index a511f20..1b3ca5d 100644
--- a/agent/tcf/framework/trace.h
+++ b/agent/tcf/framework/trace.h
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2007-2018 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007-2020 Wind River Systems, Inc. and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * and Eclipse Distribution License v1.0 which accompany this distribution.
@@ -58,20 +58,19 @@
 extern FILE * log_file;
 
 #ifndef trace
-#define trace log_file == NULL ? (void)0 : (void)print_trace
+#  define trace log_file == NULL ? (void)0 : (void)print_trace
 #endif /* not def trace */
 
 #else /* not ENABLE_Trace */
+
 #ifndef trace
-#if (defined(_MSC_VER) && _MSC_VER >= 1400) || defined(__GNUC__)
-#  define trace(...) ((void)0)
-#else
-#  define trace 0 &&
-#endif
+#  if (defined(_MSC_VER) && _MSC_VER >= 1400) || defined(__GNUC__)
+#    define trace(...) ((void)0)
+#  else
+#    define trace 0 &&
+#  endif
 #endif /* not def trace */
 
-
-
 #endif /* ENABLE_Trace */
 
 struct trace_mode {