From 77ae94e6a1640d692da29cd2cc48762bbfc68754 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 23 Apr 2019 18:47:09 +0200 Subject: [PATCH] xbps-create: remove two debugging printfs. Closes: #84 [via git-merge-pr] --- bin/xbps-create/main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/xbps-create/main.c b/bin/xbps-create/main.c index 6ec05aca..ec52e474 100644 --- a/bin/xbps-create/main.c +++ b/bin/xbps-create/main.c @@ -425,8 +425,6 @@ ftw_cb(const char *fpath, const struct stat *sb, const struct dirent *dir UNUSED */ TAILQ_FOREACH(xep, &xentry_list, entries) { if (sb->st_nlink > 1 && xep->inode == sb->st_ino) { - /* matched */ - printf("%"PRIu64" %"PRIu64"\n", xep->inode, sb->st_ino); hlink = true; break; } @@ -440,8 +438,6 @@ ftw_cb(const char *fpath, const struct stat *sb, const struct dirent *dir UNUSED linkinfo = xbps_dictionary_get_keysym(all_filesd, obj); xbps_dictionary_get_uint64(linkinfo, "inode", &inode); if (inode == sb->st_ino) { - /* matched */ - printf("%"PRIu64" %"PRIu64"\n", inode, sb->st_ino); break; } }