1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

core: rename variable "version" to "compilation_date"

This commit is contained in:
Sébastien Helleu
2023-12-02 09:36:57 +01:00
parent 9711d2dc76
commit de5b0aae47
+3 -3
View File
@@ -135,7 +135,7 @@ plugin_api_info_date_cb (const void *pointer, void *data,
const char *info_name,
const char *arguments)
{
const char *version;
const char *compilation_date;
/* make C compiler happy */
(void) pointer;
@@ -143,8 +143,8 @@ plugin_api_info_date_cb (const void *pointer, void *data,
(void) info_name;
(void) arguments;
version = version_get_compilation_date_time ();
return (version) ? strdup (version) : NULL;
compilation_date = version_get_compilation_date_time ();
return (compilation_date) ? strdup (compilation_date) : NULL;
}
/*