From 00f758f7ef1a702f39331ceb88133a7e45d19bae Mon Sep 17 00:00:00 2001 From: "shaver%mozilla.org" Date: Tue, 17 Oct 2000 17:15:36 +0000 Subject: [PATCH] #56636, remove debug cruft, r/sr=blizzard git-svn-id: svn://10.0.0.236/trunk@81297 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/io/nsLocalFileUnix.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mozilla/xpcom/io/nsLocalFileUnix.h b/mozilla/xpcom/io/nsLocalFileUnix.h index 29026f53160..c789edf5c4c 100644 --- a/mozilla/xpcom/io/nsLocalFileUnix.h +++ b/mozilla/xpcom/io/nsLocalFileUnix.h @@ -43,10 +43,6 @@ inline nsresult nsresultForErrno(int err) { -#ifdef DEBUG_shaver - if (err) - fprintf(stderr, "errno %d\n", err); -#endif switch(err) { case 0: return NS_OK; @@ -101,9 +97,6 @@ protected: nsresult FillStatCache() { if (stat(mPath, &mCachedStat) == -1) { -#ifdef DEBUG_shaver - fprintf(stderr, "stat(%s) -> %d\n", (const char *)mPath, errno); -#endif return NS_ERROR_FAILURE; } mHaveCachedStat = PR_TRUE;