Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the Storage::read_async and Storage::write_async methods
[simgrid.git] / tools / cmake / test_prog / prog_gnu_dynlinker.c
index 6187f9e..0317da2 100644 (file)
@@ -1,5 +1,5 @@
 /* prog_gnu_dynlinker.c -- check that RTLD_NEXT is defined as in GNU linker */
-/* Copyright (c) 2012-2014. The SimGrid Team.
+/* Copyright (c) 2012-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -25,9 +25,9 @@ int main(void) {
       return 0; // SUCCESS
    } else {
       if (error)
-        printf("Error while checking for dlsym: %s\n",error);
+   printf("Error while checking for dlsym: %s\n",error);
       else
-        printf("dlsym did not return any error, but failed to find malloc()\n");
+   printf("dlsym did not return any error, but failed to find malloc()\n");
       return 1; // FAILED
    }
 }