~n-muench/open-vm-tools/devel

« back to all changes in this revision

Viewing changes to toolbox/toolboxcmd-shrink.c

  • Committer: Nate Muench
  • Date: 2011-05-05 00:27:16 UTC
  • Revision ID: nowiwilldestroyabydos@gmail.com-20110505002716-f87n4uvh2hg3crrk
Merge with Natty, Enable shared folders

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
   DblLnkLst_ForEach(curr, &plist.link) {
154
154
      WiperPartition *p = DblLnkLst_Container(curr, WiperPartition, link);
155
155
      if (p->type != PARTITION_UNSUPPORTED) {
156
 
         printf("%s\n", p->mountPoint);
 
156
         g_print("%s\n", p->mountPoint);
157
157
      }
158
158
   }
159
159
 
242
242
      }
243
243
 
244
244
      if (!quiet) {
245
 
         printf("\rProgress: %d [", progress);
 
245
         g_print("\rProgress: %d [", progress);
246
246
         for (i = 0; i <= progress / 10; i++) {
247
247
            putchar('=');
248
248
         }
249
 
         printf(">%*c", 10 - i + 1, ']');
 
249
         g_print(">%*c", 10 - i + 1, ']');
250
250
         fflush(stdout);
251
251
      }
252
252
   }