From: Daniel Richard G Date: Fri, 10 Aug 2012 12:10:55 +0000 (+0200) Subject: Mark find_oldest_removable_snapshot() as static. X-Git-Tag: v0.1.5~10 X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=commitdiff_plain;h=c4653d0f3496d0b8b21da774c1f8312c20e3f25f;ds=sidebyside Mark find_oldest_removable_snapshot() as static. It is not used outside the source file in which it is defined. --- diff --git a/dss.c b/dss.c index 745729f..c9bdeb9 100644 --- a/dss.c +++ b/dss.c @@ -511,7 +511,7 @@ static struct snapshot *find_outdated_snapshot(struct snapshot_list *sl) return NULL; } -struct snapshot *find_oldest_removable_snapshot(struct snapshot_list *sl) +static struct snapshot *find_oldest_removable_snapshot(struct snapshot_list *sl) { int i; struct snapshot *s;