Mercurial > ecos
changeset 610:9c94e977cc10
fix syntax error
| author | msalter |
|---|---|
| date | Thu, 13 Feb 2003 15:22:34 +0000 |
| parents | c656237545b7 |
| children | 2291bddd0c23 |
| files | packages/hal/arm/arch/current/ChangeLog packages/hal/arm/arch/current/src/redboot_linux_exec.c |
| diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/arm/arch/current/ChangeLog +++ b/packages/hal/arm/arch/current/ChangeLog @@ -1,3 +1,7 @@ +2003-02-13 Mark Salter <msalter@redhat.com> + + * src/redboot_linux_exec.c (do_exec): Add missing semicolon. + 2003-02-13 Gary Thomas <gary@mlbassoc.com> * src/redboot_linux_exec.c (CYGHWR_REDBOOT_LINUX_ATAG_MEM):
--- a/packages/hal/arm/arch/current/src/redboot_linux_exec.c +++ b/packages/hal/arm/arch/current/src/redboot_linux_exec.c @@ -8,7 +8,7 @@ //####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc. // Copyright (C) 2003 Gary Thomas // // eCos is free software; you can redistribute it and/or modify it under @@ -324,7 +324,7 @@ do_exec(int argc, char *argv[]) params = (struct tag *)((long *)params + params->hdr.size); // Fill in the details of the memory layout - CYGHWR_REDBOOT_LINUX_ATAG_MEM(params) + CYGHWR_REDBOOT_LINUX_ATAG_MEM(params); params = (struct tag *)((long *)params + params->hdr.size); if (ramdisk_addr_set) {
