fix mixed case header inclusion for linux build
[reactos.git] / rosapps / tests / dnsquery / dnsquery.c
index 4578020..7ceaaf3 100644 (file)
@@ -1,7 +1,7 @@
 #include <windows.h>
 #include <stdio.h>
-#include <WinError.h>
-#include <WinDNS.h>
+#include <winerror.h>
+#include <windns.h>
 #include <assert.h>
 
 int main( int argc, char **argv ) {
@@ -14,7 +14,7 @@ int main( int argc, char **argv ) {
   while( AddrResponse ) {
     if( AddrResponse->wType == DNS_TYPE_A ) {
       Addr = ntohl( AddrResponse->Data.A.IpAddress );
-      printf( "www.reactos.com == %d.%d.%d.%d\n", 
+      printf( "www.reactos.com == %d.%d.%d.%d\n",
              (int)(Addr >> 24) & 0xff,
              (int)(Addr >> 16) & 0xff,
              (int)(Addr >> 8) & 0xff,