summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwarren <devnull@localhost>1998-06-02 08:00:28 +0000
committerwarren <devnull@localhost>1998-06-02 08:00:28 +0000
commit46c8f80877ee98380219ca166aaa746cc850161b (patch)
tree223fd43c016786acfc718311cb7aada4145b459d
parente483f9f059eee59f23940b77b76d5dad87f0318a (diff)
downloadnspr-hg-OJI_19980528_TEMP_BRANCH.tar.gz
Making branch work. Changes for nsplugin.h -> nsIPlug.hOJI_19980528_TEMP_BRANCH
-rw-r--r--pr/src/linking/prlink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pr/src/linking/prlink.c b/pr/src/linking/prlink.c
index 93f0b45a..61edcad1 100644
--- a/pr/src/linking/prlink.c
+++ b/pr/src/linking/prlink.c
@@ -103,6 +103,8 @@ static void DLLErrorInternal(PRIntn oserr)
error = dlerror(); /* $$$ That'll be wrong some of the time - AOF */
#elif defined(HAVE_STRERROR)
error = strerror(oserr); /* this should be okay */
+#elif defined(XP_PC)
+ error = errno_string(GetLastError());
#else
error = errno_string(oserr);
#endif