From f66975993873af8aa040abe8ab89a4e9bf42dd01 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Thu, 14 Feb 2013 15:22:54 +0100 Subject: [PATCH] setup: remove debug printf --- src/setup/setup.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/setup/setup.c b/src/setup/setup.c index 5c2bd4c..d1b9fa9 100644 --- a/src/setup/setup.c +++ b/src/setup/setup.c @@ -820,15 +820,12 @@ static bool same_entry(uint16_t id, const uint8_t uuid[16], const char *path) { err = efi_get_boot_option(id, &otitle, ouuid, &opath); if (err < 0) return false; -printf("check uuid\n"); if (memcmp(uuid, ouuid, 16) != 0) goto finish; -printf("check path %04X %s %s\n", id, path, opath); if (!streq(path, opath)) goto finish; -printf("same %04X\n", id); same = true; finish: -- 2.7.4