[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r4684 - in GNUnet/src: include util/error
From: |
gnunet |
Subject: |
[GNUnet-SVN] r4684 - in GNUnet/src: include util/error |
Date: |
Fri, 23 Mar 2007 00:08:24 -0600 (MDT) |
Author: durner
Date: 2007-03-23 00:08:23 -0600 (Fri, 23 Mar 2007)
New Revision: 4684
Modified:
GNUnet/src/include/gnunet_util_error.h
GNUnet/src/util/error/error.c
Log:
const
Modified: GNUnet/src/include/gnunet_util_error.h
===================================================================
--- GNUnet/src/include/gnunet_util_error.h 2007-03-22 21:59:20 UTC (rev
4683)
+++ GNUnet/src/include/gnunet_util_error.h 2007-03-23 06:08:23 UTC (rev
4684)
@@ -166,7 +166,7 @@
GE_create_context_multiplexer(struct GE_Context * ctx1,
struct GE_Context * ctx2);
-char *GE_strerror(int errnum);
+const char *GE_strerror(int errnum);
/**
* If this context would log an event of the given kind,
Modified: GNUnet/src/util/error/error.c
===================================================================
--- GNUnet/src/util/error/error.c 2007-03-22 21:59:20 UTC (rev 4683)
+++ GNUnet/src/util/error/error.c 2007-03-23 06:08:23 UTC (rev 4684)
@@ -335,6 +335,6 @@
defaultContext = ctx;
}
-char *GE_strerror(int errnum) {
+const char *GE_strerror(int errnum) {
return STRERROR(errnum);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r4684 - in GNUnet/src: include util/error,
gnunet <=