From 39764be1cf50634aa7e96942559321aefe64767d Mon Sep 17 00:00:00 2001 From: David Halls Date: Mon, 22 Jan 2024 21:06:46 +0000 Subject: [PATCH] Remove unused param name --- src/disruptor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disruptor.cc b/src/disruptor.cc index 4f39c92..183201a 100644 --- a/src/disruptor.cc +++ b/src/disruptor.cc @@ -429,7 +429,7 @@ const char* Disruptor::ErrorMessage(const int r, const char* buf) return r == 0 ? buf : nullptr; } -const char* Disruptor::ErrorMessage(const char* r, const char* buf) +const char* Disruptor::ErrorMessage(const char* r, const char*) { return r; }