diff options
author | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-09-26 15:19:53 +0930 |
---|---|---|
committer | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-09-26 15:19:53 +0930 |
commit | 8b508f5d6bd0d3995294d5ff300a856754442999 (patch) | |
tree | d873d9fcf678b68b919a4cae5124fd452bfa8220 /dix/resource.c | |
parent | 394f3c1dbee7270a1d930846d49278424c3072d4 (diff) |
dix: unify ErrorFs. prepend all with [dix].
Diffstat (limited to 'dix/resource.c')
-rw-r--r-- | dix/resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dix/resource.c b/dix/resource.c index e83c529d3..e5bc90065 100644 --- a/dix/resource.c +++ b/dix/resource.c @@ -468,7 +468,7 @@ AddResource(XID id, RESTYPE type, pointer value) rrec = &clientTable[client]; if (!rrec->buckets) { - ErrorF("AddResource(%lx, %lx, %lx), client=%d \n", + ErrorF("[dix] AddResource(%lx, %lx, %lx), client=%d \n", (unsigned long)id, type, (unsigned long)value, client); FatalError("client not in use\n"); } @@ -589,7 +589,7 @@ FreeResource(XID id, RESTYPE skipDeleteFuncType) } } if (!gotOne) - ErrorF("Freeing resource id=%lX which isn't there.\n", + ErrorF("[dix] Freeing resource id=%lX which isn't there.\n", (unsigned long)id); } |