Skip to content

Commit

Permalink
[fixup] remove redundant virutal keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
arogge committed Aug 17, 2023
1 parent 1a80df4 commit 93bd51e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/stored/backends/unix_tape_device.h
Expand Up @@ -36,7 +36,7 @@ class unix_tape_device : public generic_tape_device {
~unix_tape_device() { close(nullptr); };

int d_ioctl(int fd, ioctl_req_t request, char* op) override;
virtual ssize_t d_read(int fd, void* buffer, size_t count) override;
ssize_t d_read(int fd, void* buffer, size_t count) override;
};

} /* namespace storagedaemon */
Expand Down

0 comments on commit 93bd51e

Please sign in to comment.