Convert the dnsapi stuff to a consistent 4 spaces indentation
[reactos.git] / reactos / dll / win32 / dnsapi / dnsapi / adns.c
index de9029b..e0cf7f8 100644 (file)
 #define NDEBUG
 #include <debug.h>
 
-DNS_STATUS DnsIntTranslateAdnsToDNS_STATUS( int Status ) {
-  switch( Status ) {
-  case adns_s_ok:
-    return ERROR_SUCCESS;
-  case adns_s_nomemory:
-  case adns_s_systemfail:
-  default: /* There really aren't any general errors in the dns part. */
-    return ERROR_OUTOFMEMORY;
-  }
-}
+DNS_STATUS
+DnsIntTranslateAdnsToDNS_STATUS(int Status)
+{
+    switch(Status)
+    {
+        case adns_s_ok:
+            return ERROR_SUCCESS;
 
+        case adns_s_nomemory:
+        case adns_s_systemfail:
+        default: /* There really aren't any general errors in the dns part. */
+            return ERROR_OUTOFMEMORY;
+    }
+}