From ad2c432c4ad49449fcf13e027af15ae4b8374a94 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 17 May 2015 20:04:19 -0400 Subject: [PATCH] Fixed duplication of types. --- redo/GNUbase.mk | 1 - redo/GNUmakefile | 3 ++- redo/types.c | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/redo/GNUbase.mk b/redo/GNUbase.mk index 677d69f8..23dd5fd2 100644 --- a/redo/GNUbase.mk +++ b/redo/GNUbase.mk @@ -5,7 +5,6 @@ OUTDIR = out OBJDIR = .obj IDLFILES = \ - ui.idl \ $(baseIDLFILES) xHFILES = \ diff --git a/redo/GNUmakefile b/redo/GNUmakefile index 62bec1fc..ec0f1a6c 100644 --- a/redo/GNUmakefile +++ b/redo/GNUmakefile @@ -16,7 +16,8 @@ endif include $(OS)/GNUmakeinc.mk -#baseIDLFILES = \ +baseIDLFILES = \ + ui.idl # ui_$(OS).idl baseHFILES = \ diff --git a/redo/types.c b/redo/types.c index bfbdafe3..6db515d6 100644 --- a/redo/types.c +++ b/redo/types.c @@ -43,7 +43,6 @@ void *uiIsA(void *p, uintmax_t id, int fail) if (compareTo == id) return t; ti = ptrArrayIndex(types, struct typeinfo *, compareTo); -printf("%d %d %d\n", (int)compareTo, (int)(ti->parent), (int)id); if (ti->parent == 0) break; compareTo = ti->parent;