diff options
author | Roy Marples <roy@marples.name> | 2007-09-18 12:04:51 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-18 12:04:51 +0000 |
commit | 936dc943512289a2692aa12ff666f6dd06b00d86 (patch) | |
tree | fdfe2dea1fa722136419bec0ad3e2d08a14b691f /src/rc-plugin.c | |
parent | f1bba128929778c21168e84b8970f6623611dc6e (diff) |
API change! rc_ls_dir, rc_get_config and rc_get_list no longer take
a starting list as a first argument. Instead, use rc_strlist_join
to append or prepend the new list to an existing list.
Diffstat (limited to 'src/rc-plugin.c')
-rw-r--r-- | src/rc-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc-plugin.c b/src/rc-plugin.c index 1103e469..5e74fb73 100644 --- a/src/rc-plugin.c +++ b/src/rc-plugin.c @@ -62,7 +62,7 @@ void rc_plugin_load (void) if (! rc_exists (RC_PLUGINDIR)) return; - files = rc_ls_dir (NULL, RC_PLUGINDIR, 0); + files = rc_ls_dir (RC_PLUGINDIR, 0); STRLIST_FOREACH (files, file, i) { char *p = rc_strcatpaths (RC_PLUGINDIR, file, NULL); void *h = dlopen (p, RTLD_LAZY); |