Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-07-23 13:53:54 +0300
committerGitHub <noreply@github.com>2022-07-23 13:53:54 +0300
commit92170ead6fd82185769593ea4d29882a0840ef72 (patch)
treeda02e5b1b5fad7e06f6f0688724accbc2e2b3dd6
parentad8df847fdebca95feff3f84d19fa5dacdb51c5e (diff)
FIX(plugin): Typo in error string representation
-rw-r--r--plugins/PluginComponents_v_1_0_x.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginComponents_v_1_0_x.h b/plugins/PluginComponents_v_1_0_x.h
index 9dbfe2a96..565b249a9 100644
--- a/plugins/PluginComponents_v_1_0_x.h
+++ b/plugins/PluginComponents_v_1_0_x.h
@@ -361,7 +361,7 @@ inline const char *mumble_errorMessage(int16_t errorCode) {
case MUMBLE_EC_DATA_ID_TOO_LONG:
return "The given data ID is too long (exceeds limit)";
case MUMBLE_EC_API_REQUEST_TIMEOUT:
- return "A blocking API call took too long and was this aborted (probably preventing a deadlock)";
+ return "A blocking API call took too long and was thus aborted (probably preventing a deadlock)";
case MUMBLE_EC_OPERATION_UNSUPPORTED_BY_SERVER:
return "The requested API operation depends on server-side functionality, not supported by the server "
"you're connected to";