// Fetch the paths
const char* path = archive_entry_pathname(entry);
- DEBUG(archive->pakfire, "Extracting %s\n", path);
+ DEBUG(archive->pakfire, "Extracting /%s\n", path);
// Prepend the prefix
if (extractor->prefix) {
// Create file & extract payload
r = archive_read_extract2(a, entry, extractor->writer);
if (r != ARCHIVE_OK) {
- ERROR(archive->pakfire, "Could not extract file /%s: %s\n",
+ ERROR(archive->pakfire, "Could not extract file %s: %s\n",
path, archive_error_string(extractor->writer));
goto ERROR;
}