From: Marek Polacek Date: Sat, 7 May 2011 17:26:20 +0000 (+0200) Subject: unstrip.c: Mark function as static. X-Git-Tag: elfutils-0.153~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82f77d757c1a9c0e6f66eef71bbe48484019fb1a;p=platform%2Fupstream%2Felfutils.git unstrip.c: Mark function as static. --- diff --git a/src/ChangeLog b/src/ChangeLog index fd5a51e..6c49eef 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-05-07 Marek Polacek + + * unstrip.c (compare_sections_nonrel): Mark this function as static. + 2011-04-26 Mark Wielaard * readelf.c (handle_notes_data): Call ebl_object_note_type_name diff --git a/src/unstrip.c b/src/unstrip.c index 3283d73..69c3775 100644 --- a/src/unstrip.c +++ b/src/unstrip.c @@ -706,7 +706,7 @@ compare_sections_rel (const void *a, const void *b) return compare_sections (a, b, true); } -int +static int compare_sections_nonrel (const void *a, const void *b) { return compare_sections (a, b, false);