diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-12-24 16:00:36 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-12-24 16:00:36 +0000 |
commit | d6ac6af9267f4d2a3dfe513fc87a08350bd62f78 (patch) | |
tree | 0426ed94f3b4edae43ceba288e0aee20565ee644 /lib/csu/boot.h | |
parent | c314bf84db071e6dbc106ef8316439a7f6a8baff (diff) |
Replace return by break; requested by guenther@
Diffstat (limited to 'lib/csu/boot.h')
-rw-r--r-- | lib/csu/boot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/boot.h b/lib/csu/boot.h index 803e935b4c1..5a79acb6dbd 100644 --- a/lib/csu/boot.h +++ b/lib/csu/boot.h @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.h,v 1.25 2016/12/24 15:55:07 kettenis Exp $ */ +/* $OpenBSD: boot.h,v 1.26 2016/12/24 16:00:35 kettenis Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -237,7 +237,7 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp) * GNU_RELRO (a) covers the GOT, and (b) comes after * all LOAD sections, so if we found it then we're done */ - return; + break; } } } |