]> sourceware.org Git - newlib-cygwin.git/commitdiff
* pldd.c: Fix formatting.
authorYaakov Selkowitz <yselkowi@redhat.com>
Fri, 24 Feb 2012 10:38:20 +0000 (10:38 +0000)
committerYaakov Selkowitz <yselkowi@redhat.com>
Fri, 24 Feb 2012 10:38:20 +0000 (10:38 +0000)
winsup/utils/pldd.c

index c90a3503393b0f65bb4d3bdf86afd4e02fb5d9ec..8a6179fdc645ac2a48b26828106b32df9076954c 100644 (file)
@@ -34,10 +34,10 @@ static void
 print_help (void)
 {
   printf ("Usage: pldd [OPTION...] PID\n\n"
-          "List dynamic shared objects loaded into a process.\n\n"
-          "  -?, --help                 Give this help list\n"
-          "      --usage                Give a short usage message\n"
-          "  -V, --version              Print program version\n");
+         "List dynamic shared objects loaded into a process.\n\n"
+         "  -?, --help                 Give this help list\n"
+         "      --usage                Give a short usage message\n"
+         "  -V, --version              Print program version\n");
   exit (EXIT_SUCCESS);
 }
 
@@ -94,7 +94,7 @@ main (int argc, char *argv[])
         print_version ();
         break;
       case 0:
-        if (strcmp( "usage", longopts[optind].name ) == 0)
+        if (strcmp ("usage", longopts[optind].name) == 0)
           print_usage ();
         break;
       default:
@@ -112,7 +112,7 @@ main (int argc, char *argv[])
     error (1, 0, "invalid process ID '%s'", argv[0]);
 
   pidfile = (char *) malloc (32);
-  sprintf(pidfile, "/proc/%d/winpid", pid);
+  sprintf (pidfile, "/proc/%d/winpid", pid);
   fd = fopen (pidfile, "rb");
   if (!fd)
     error (1, ENOENT, "cannot open /proc/%d", pid);
@@ -120,7 +120,7 @@ main (int argc, char *argv[])
 
   exefile = (char *) malloc (32);
   exename = (char *) malloc (MAX_PATH);
-  sprintf(exefile, "/proc/%d/exename", pid);
+  sprintf (exefile, "/proc/%d/exename", pid);
   fd = fopen (exefile, "rb");
   fscanf (fd, "%s", exename);
 
@@ -130,9 +130,9 @@ main (int argc, char *argv[])
 
   printf ("%d:\t%s\n", pid, exename);
 
-  EnumProcessModules (hProcess, hModules, sizeof(hModules), &cbModules);
+  EnumProcessModules (hProcess, hModules, sizeof (hModules), &cbModules);
   /* start at 1 to skip the executable itself */
-  for (i = 1; i < (cbModules / sizeof(HMODULE)); i++)
+  for (i = 1; i < (cbModules / sizeof (HMODULE)); i++)
     {
       TCHAR winname[MAX_PATH];
       char posixname[MAX_PATH];
This page took 0.034836 seconds and 5 git commands to generate.