Mercurial > audlegacy-plugins
diff src/scrobbler/plugin.c @ 1635:16044c4a34d7
scrobbler: C99 initialisers
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Fri, 07 Sep 2007 05:19:03 -0500 |
| parents | f4d8082668c1 |
| children | 62e89e392227 |
line wrap: on
line diff
--- a/src/scrobbler/plugin.c Fri Sep 07 05:18:07 2007 -0500 +++ b/src/scrobbler/plugin.c Fri Sep 07 05:19:03 2007 -0500 @@ -56,13 +56,10 @@ static GeneralPlugin scrobbler_gp = { - NULL, - NULL, - "Scrobbler Plugin", - init, - about_show, - NULL, - cleanup + .description = "Scrobbler Plugin", + .init = init, + .about = about_show, + .cleanup = cleanup }; static gboolean ishttp(const char *a)
