Commit 686a6df3 authored by Eric Wong's avatar Eric Wong Committed by Max Kellermann

{dir,song}vec: these structs are const

We definitely don't modify them here.
parent f2525e3e
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <string.h> #include <string.h>
#include <glib.h> #include <glib.h>
static size_t dv_size(struct dirvec *dv) static size_t dv_size(const struct dirvec *dv)
{ {
return dv->nr * sizeof(struct directory *); return dv->nr * sizeof(struct directory *);
} }
......
...@@ -15,7 +15,7 @@ static int songvec_cmp(const void *s1, const void *s2) ...@@ -15,7 +15,7 @@ static int songvec_cmp(const void *s1, const void *s2)
return strcmp(a->url, b->url); return strcmp(a->url, b->url);
} }
static size_t sv_size(struct songvec *sv) static size_t sv_size(const struct songvec *sv)
{ {
return sv->nr * sizeof(struct song *); return sv->nr * sizeof(struct song *);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment