Skip to content

Commit

Permalink
cleanup: removed a redundant storagedaemon:: specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Apr 5, 2019
1 parent 8fc82e5 commit c5b7c99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/src/stored/backends/chunked_device.cc
Expand Up @@ -184,9 +184,9 @@ bool chunked_device::StartIoThreads()
* the producer (the storage driver) and multiple consumers (io-threads).
*/
if (io_slots_) {
cb_ = New(ordered_circbuf(io_threads_ * io_slots_));
cb_ = New(storagedaemon::ordered_circbuf(io_threads_ * io_slots_));
} else {
cb_ = New(ordered_circbuf(io_threads_ * OQSIZE));
cb_ = New(storagedaemon::ordered_circbuf(io_threads_ * OQSIZE));
}

/*
Expand Down
2 changes: 1 addition & 1 deletion core/src/stored/backends/chunked_device.h
Expand Up @@ -109,7 +109,7 @@ class chunked_device : public Device {
bool readonly_;
uint8_t inflight_chunks_;
char* current_volname_;
storagedaemon::ordered_circbuf* cb_;
ordered_circbuf* cb_;
alist* thread_ids_;
chunk_descriptor* current_chunk_;

Expand Down
1 change: 0 additions & 1 deletion core/src/stored/backends/ordered_cbuf.cc
Expand Up @@ -27,7 +27,6 @@
*/
#include "include/bareos.h"
#include "lib/dlist.h"

#include "ordered_cbuf.h"
namespace storagedaemon {

Expand Down

0 comments on commit c5b7c99

Please sign in to comment.