summaryrefslogtreecommitdiffstats
path: root/sys/boot/sparc64
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/sparc64')
-rw-r--r--sys/boot/sparc64/boot1/boot1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/boot/sparc64/boot1/boot1.c b/sys/boot/sparc64/boot1/boot1.c
index 2760e3c..872af75 100644
--- a/sys/boot/sparc64/boot1/boot1.c
+++ b/sys/boot/sparc64/boot1/boot1.c
@@ -296,13 +296,13 @@ ofw_exit(void)
}
static void
-bcopy(const void *dst, void *src, size_t len)
+bcopy(const void *src, void *dst, size_t len)
{
- const char *d = dst;
- char *s = src;
+ const char *s = src;
+ char *d = dst;
while (len-- != 0)
- *s++ = *d++;
+ *d++ = *s++;
}
static void
OpenPOWER on IntegriCloud