diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:46:41 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:46:41 +0000 |
commit | b2d0656814c2afe9a05b3e130f0289b225a371ec (patch) | |
tree | 8a649f701aa5b51a2ee9a825d136711ba4b3d538 /src/rc/rc-plugin.c | |
parent | c0a3e25d482d52102c04765767ed82d81407e7e8 (diff) |
Style fix: "char *foo" not "char* foo".
Diffstat (limited to 'src/rc/rc-plugin.c')
-rw-r--r-- | src/rc/rc-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-plugin.c b/src/rc/rc-plugin.c index 6f07471d..d82e9a92 100644 --- a/src/rc/rc-plugin.c +++ b/src/rc/rc-plugin.c @@ -105,7 +105,7 @@ rc_plugin_load(void) continue; } - fptr = (int (*)(RC_HOOK, const char*)) + fptr = (int (*)(RC_HOOK, const char *)) dlfunc(h, RC_PLUGIN_HOOK); if (fptr == NULL) { eerror("%s: cannot find symbol `%s'", |