From 794e8c6c644641c42e5f11b3e3f3a9cb9b796567 Mon Sep 17 00:00:00 2001 From: "jband%netscape.com" Date: Tue, 22 Aug 2000 09:28:52 +0000 Subject: [PATCH] fix bustage after nsIBaseStream removal --- xpcom/reflect/xptinfo/tests/TestInterfaceInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/reflect/xptinfo/tests/TestInterfaceInfo.cpp b/xpcom/reflect/xptinfo/tests/TestInterfaceInfo.cpp index 8c57af87b5d..69897724eeb 100644 --- a/xpcom/reflect/xptinfo/tests/TestInterfaceInfo.cpp +++ b/xpcom/reflect/xptinfo/tests/TestInterfaceInfo.cpp @@ -49,8 +49,8 @@ int main (int argc, char **argv) { iim->GetNameForIID(iid1, &name1); fprintf(stderr, "%s iid %s\n", name1, iid1->ToString()); - fprintf(stderr, "\ngetting iid for 'nsIBaseStream'\n"); - iim->GetIIDForName("nsIBaseStream", &iid2); + fprintf(stderr, "\ngetting iid for 'nsIInputStream'\n"); + iim->GetIIDForName("nsIInputStream", &iid2); iim->GetNameForIID(iid2, &name2); fprintf(stderr, "%s iid %s\n", name2, iid2->ToString());