This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] add missing underscore to spu impura_data


I left out an underscore with the spu errno change, fix that.

Thanks ...

2008-04-16 Patrick Mansfield <patmans@us.ibm.com>
	* libc/machine/spu/impure.c: Add missing underscore to impure_data.

Index: quilt/newlib/libc/machine/spu/impure.c
===================================================================
--- quilt.orig/newlib/libc/machine/spu/impure.c
+++ quilt/newlib/libc/machine/spu/impure.c
@@ -9,6 +9,6 @@
 #define __ATTRIBUTE_IMPURE_DATA__
 #endif
 
-struct _reent __ATTRIBUTE_IMPURE_DATA__ _impure_data = _REENT_INIT(impure_data);
+struct _reent __ATTRIBUTE_IMPURE_DATA__ _impure_data = _REENT_INIT(_impure_data);
 struct _reent *__ATTRIBUTE_IMPURE_PTR__ _impure_ptr = &_impure_data;
 struct _reent *_CONST __ATTRIBUTE_IMPURE_PTR__ _global_impure_ptr = &_impure_data;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]