From d51a69a420f9f09fe89f9b91333ec1440414182e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 16 Aug 2004 15:51:08 +0000 Subject: [PATCH] Removed some unneeded debug output. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8594 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/module.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/kernel/core/module.c b/src/kernel/core/module.c index 574386656f..434249fe47 100644 --- a/src/kernel/core/module.c +++ b/src/kernel/core/module.c @@ -1,8 +1,8 @@ /* Module manager */ /* -** Copyright 2002-2004, The OpenBeOS Team. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Copyright 2002-2004, Haiku Inc.. All rights reserved. +** Distributed under the terms of the Haiku License. ** ** Copyright 2001, Thomas Kurschel. All rights reserved. ** Distributed under the terms of the NewOS License. @@ -790,7 +790,6 @@ iterator_get_next_module(module_iterator *iterator, char *buffer, size_t *_buffe for (i = iterator->module_offset; sBuiltInModules[i] != NULL; i++) { // the module name must fit the prefix -dprintf(":: compare: \"%s\" <-> \"%s\" (%ld)\n", iterator->prefix, sBuiltInModules[i]->name, iterator->prefix_length); if (strncmp(sBuiltInModules[i]->name, iterator->prefix, iterator->prefix_length)) continue;