Removed redundant inline comments in the Winamp plugin by simplifying the plugin handle declaration and cleanup comments around initialization/return values, while keeping functional comments intact.

Removed the redundant return 1 inline comment in the Exec plugin init function.
This commit is contained in:
2026-02-25 12:57:42 -07:00
parent 3cff6742f5
commit 9548be0cec
2 changed files with 3 additions and 4 deletions

View File

@@ -145,7 +145,7 @@ zoitechat_plugin_init (zoitechat_plugin *plugin_handle, char **plugin_name, char
zoitechat_hook_command (ph, "EXEC", ZOITECHAT_PRI_NORM, run_command, "Usage: /EXEC [-O] - execute commands inside ZoiteChat", 0);
zoitechat_printf (ph, "%s plugin loaded\n", name);
return 1; /* return 1 for success */
return 1;
}
int