remove trailing whitespace at end of lines
[reactos.git] / rosapps / tests / vmtest / vmtest.c
index ec7235c..95a8aa0 100644 (file)
@@ -5,7 +5,7 @@ int main()
 {
    PVOID Base;
    PVOID Ret;
-   
+
    Base = VirtualAlloc(NULL,
                       1048576,
                       MEM_RESERVE,
@@ -14,7 +14,7 @@ int main()
      {
        printf("VirtualAlloc failed 1\n");
      }
-   
+
    Ret = VirtualAlloc(Base + 4096,
                      4096,
                      MEM_COMMIT,
@@ -23,7 +23,7 @@ int main()
      {
        printf("VirtualAlloc failed 2\n");
      }
-   
+
    Ret = VirtualAlloc(Base + 12288,
                      4096,
                      MEM_COMMIT,
@@ -32,7 +32,7 @@ int main()
      {
        printf("VirtualAlloc failed 3\n");
      }
-   
+
    Ret = VirtualAlloc(Base + 20480,
                      4096,
                      MEM_COMMIT,
@@ -41,7 +41,7 @@ int main()
      {
        printf("VirtualAlloc failed 4\n");
      }
-   
+
    Ret = VirtualAlloc(Base + 4096,
                      28672,
                      MEM_RESERVE,