Code

setup.c: Prepare for Windows directory separators.
[git.git] / builtin-remote.c
index 4b00cf92581e6f8cbe81c3d54825d210a2ccf979..145dd8568c7a644344d8bb25ba395b10c5835c5c 100644 (file)
@@ -560,12 +560,13 @@ static int prune(int argc, const char **argv)
 
                get_remote_ref_states(*argv, &states, 1);
 
-               printf("Pruning %s\n", *argv);
-               if (states.stale.nr)
+               if (states.stale.nr) {
+                       printf("Pruning %s\n", *argv);
                        printf("URL: %s\n",
                               states.remote->url_nr
                               ? states.remote->url[0]
                               : "(no URL)");
+               }
 
                for (i = 0; i < states.stale.nr; i++) {
                        const char *refname = states.stale.items[i].util;