summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectcopynameraw.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectcopynameraw.c')
-rw-r--r--cpukit/score/src/objectcopynameraw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/objectcopynameraw.c b/cpukit/score/src/objectcopynameraw.c
index ef2d0186d6..c40328a3e1 100644
--- a/cpukit/score/src/objectcopynameraw.c
+++ b/cpukit/score/src/objectcopynameraw.c
@@ -30,7 +30,7 @@
*
* XXX
*/
-
+
void _Objects_Copy_name_raw(
void *source,
void *destination,
@@ -40,7 +40,7 @@ void _Objects_Copy_name_raw(
uint32_t *source_p = (uint32_t *) source;
uint32_t *destination_p = (uint32_t *) destination;
uint32_t tmp_length = length / OBJECTS_NAME_ALIGNMENT;
-
+
while ( tmp_length-- )
*destination_p++ = *source_p++;
}