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 <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
committerRobert <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
commitaf7dac72f4063dd8d4dac71973ea51c25896089a (patch)
tree35558695aea94d48fd9e77d164d63fd8b7c76e90 /plugins/null_plugin.cpp
parent40b28b03c150b453e00c6bc4f8d6957caea59c51 (diff)
FORMAT: Run clang-format 10 on all C/CXX source-files
Diffstat (limited to 'plugins/null_plugin.cpp')
-rw-r--r--plugins/null_plugin.cpp13
1 files changed, 2 insertions, 11 deletions
diff --git a/plugins/null_plugin.cpp b/plugins/null_plugin.cpp
index 51a02078f..f7e6a4d86 100644
--- a/plugins/null_plugin.cpp
+++ b/plugins/null_plugin.cpp
@@ -6,7 +6,7 @@
#include "mumble_plugin.h"
#ifndef NULL_DESC
-#define NULL_DESC L"Retracted plugin"
+# define NULL_DESC L"Retracted plugin"
#endif // NULL_DESC
static int fetch(float *, float *, float *, float *, float *, float *, std::string &, std::wstring &) {
@@ -27,18 +27,9 @@ static std::wstring description(NULL_DESC);
static std::wstring shortname(L"Retracted");
static MumblePlugin nullplug = {
- MUMBLE_PLUGIN_MAGIC,
- description,
- shortname,
- nullptr,
- nullptr,
- trylock,
- nullptr,
- longdesc,
- fetch
+ MUMBLE_PLUGIN_MAGIC, description, shortname, nullptr, nullptr, trylock, nullptr, longdesc, fetch
};
extern "C" MUMBLE_PLUGIN_EXPORT MumblePlugin *getMumblePlugin() {
return &nullplug;
}
-