diff options
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/unstrip.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index fd5a51e9..6c49eef0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-05-07 Marek Polacek <[email protected]> + + * unstrip.c (compare_sections_nonrel): Mark this function as static. + 2011-04-26 Mark Wielaard <[email protected]> * readelf.c (handle_notes_data): Call ebl_object_note_type_name diff --git a/src/unstrip.c b/src/unstrip.c index 3283d736..69c37754 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); |
