diff options
| author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-09-29 13:19:35 +0000 | 
|---|---|---|
| committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-09-29 13:19:35 +0000 | 
| commit | b7c9498ceee4cba56bfddf9cd574ce7cb1b38015 (patch) | |
| tree | 99e9bbb6ce60320e6d93bc75935b4ad321fb9914 | |
| parent | 630de1ac9d7122f0757d7a75ec1f13b5fa320d8e (diff) | |
sh_ldso: Fix typo: missing semi-colon.
| -rw-r--r-- | ldso/ldso/sh/elfinterp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/sh/elfinterp.c b/ldso/ldso/sh/elfinterp.c index da4013fb2..6cb8e087e 100644 --- a/ldso/ldso/sh/elfinterp.c +++ b/ldso/ldso/sh/elfinterp.c @@ -190,7 +190,7 @@ _dl_do_reloc (struct elf_resolve *tpnt,struct dyn_elf *scope,  			 * The caller should handle the error: undefined reference to weak symbols  			 * are not fatal.  			 */ -			return 1 +			return 1;  		}  	}  | 
