From 0893f87beb943ed8f5872aef18274f456b0c51ca Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Tue, 26 Feb 2019 11:03:57 +0100 Subject: Cleanup: uninline get_dive_site_by_uuid There seems to be no compelling reason to have this function inlined. Signed-off-by: Berthold Stoeger --- core/divesite.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'core/divesite.h') diff --git a/core/divesite.h b/core/divesite.h index 971eb6711..01c1f82f3 100644 --- a/core/divesite.h +++ b/core/divesite.h @@ -42,16 +42,7 @@ static inline struct dive_site *get_dive_site(int nr) #define for_each_dive_site(_i, _x) \ for ((_i) = 0; ((_x) = get_dive_site(_i)) != NULL; (_i)++) -static inline struct dive_site *get_dive_site_by_uuid(uint32_t uuid) -{ - int i; - struct dive_site *ds; - for_each_dive_site (i, ds) - if (ds->uuid == uuid) - return get_dive_site(i); - return NULL; -} - +struct dive_site *get_dive_site_by_uuid(uint32_t uuid); void dive_site_table_sort(); struct dive_site *alloc_or_get_dive_site(uint32_t uuid); int nr_of_dives_at_dive_site(struct dive_site *ds, bool select_only); -- cgit v1.2.3-70-g09d2