| 266 | } |
| 267 | |
| 268 | static void show_progress(void) |
| 269 | { |
| 270 | static int counter = 0; |
| 271 | if (!progress) |
| 272 | return; |
| 273 | if ((++counter % progress) == 0) |
| 274 | printf("progress %d objects\n", counter); |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | * Ideally we would want some transformation of the blob data here |
no outgoing calls
no test coverage detected