mirror of
https://github.com/reactos/reactos.git
synced 2026-06-05 03:02:59 +08:00
[CMLIB] Use UNIMPLEMENTED_ONCE in HvHiveWillShrink
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
|
||||
/* Basic definitions */
|
||||
#define UNIMPLEMENTED { printf("%s unimplemented\n", __FUNCTION__); exit(1); }
|
||||
#define UNIMPLEMENTED_ONCE { printf("%s unimplemented\n", __FUNCTION__); exit(1); }
|
||||
#define ASSERT(x) assert(x)
|
||||
#define ASSERTMSG(m, x) assert(x)
|
||||
#define DPRINT if (0) printf
|
||||
|
||||
@@ -277,7 +277,7 @@ CMAPI
|
||||
HvHiveWillShrink(IN PHHIVE RegistryHive)
|
||||
{
|
||||
/* No shrinking yet */
|
||||
UNIMPLEMENTED;
|
||||
UNIMPLEMENTED_ONCE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user