diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-12-02 01:09:52 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-12-02 01:09:52 +0100 |
commit | 1fe5dfae7f27053a286edc597695873618977f17 (patch) | |
tree | ea4001f0703f8a18d302ae148387f88188421f11 /plugins | |
parent | e2acf19d42b874eecd1b142a0e1192721fb295f5 (diff) |
apparently this is not allowed in C++
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/winsys/winsys.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/winsys/winsys.cpp b/plugins/winsys/winsys.cpp index 55a5ddaf..68c47016 100644 --- a/plugins/winsys/winsys.cpp +++ b/plugins/winsys/winsys.cpp @@ -28,9 +28,9 @@ #include "xchat-plugin.h" static xchat_plugin *ph; /* plugin handle */ -static const char name[] = "WinSys"; -static const char desc[] = "Display info about your hardware and OS"; -static const char version[] = "1.0"; +static char name[] = "WinSys"; +static char desc[] = "Display info about your hardware and OS"; +static char version[] = "1.0"; static int firstRun; static char *wmiOs; static char *wmiCpu; |