OSDN Git Service

2011-01-05 Ralf Corsepius <ralf.corsepius@rtems.org>
authorjjohnstn <jjohnstn>
Wed, 5 Jan 2011 17:23:01 +0000 (17:23 +0000)
committerjjohnstn <jjohnstn>
Wed, 5 Jan 2011 17:23:01 +0000 (17:23 +0000)
        * libc/xdr/xdr.c: Fix typos in #errors.

newlib/ChangeLog
newlib/libc/xdr/xdr.c

index febd710..c5fb377 100644 (file)
@@ -1,5 +1,9 @@
 2011-01-05  Ralf Corsepius  <ralf.corsepius@rtems.org>
 
+       * libc/xdr/xdr.c: Fix typos in #errors.
+
+2011-01-05  Ralf Corsepius  <ralf.corsepius@rtems.org>
+
        * libc/xdr/xdr_private.h: Include <stdint.h>
        * libc/xdr/xdr_rec.c: Include limits.h
 
index 4d518e8..646f9db 100644 (file)
@@ -113,7 +113,7 @@ _DEFUN (xdr_int, (xdrs, ip),
 #elif INT_MAX == LONG_MAX
   return xdr_long (xdrs, (long *) ip);
 #else
-# error Unexpeced integer sizes in xdr_int()
+# error Unexpected integer sizes in xdr_int()
 #endif
 }
 
@@ -148,7 +148,7 @@ _DEFUN (xdr_u_int, (xdrs, up),
 #elif UINT_MAX == ULONG_MAX
   return xdr_u_long (xdrs, (u_long *) up);
 #else
-# error Unexpeced integer sizes in xdr_int()
+# error Unexpected integer sizes in xdr_int()
 #endif
 }