From: Marco van Wieringen Date: Wed, 11 Aug 2010 13:30:25 +0000 (+0200) Subject: Fix typo so things compile on systems without vtape support. X-Git-Tag: Release-7.0.0~1600 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c463712f2ec179b8a890e2381d4b0ad1fa575412;p=bacula%2Fbacula Fix typo so things compile on systems without vtape support. --- diff --git a/bacula/src/stored/vtape.h b/bacula/src/stored/vtape.h index b2bef53b69..42b49c927b 100644 --- a/bacula/src/stored/vtape.h +++ b/bacula/src/stored/vtape.h @@ -51,7 +51,7 @@ typedef enum { VT_SKIP_EOF /* Have already read the EOF byte */ } VT_READ_FM_MODE; -class vtape: public DEVICE{ +class vtape: public DEVICE { private: int fd; /* Our file descriptor */ @@ -118,7 +118,7 @@ public: int d_close(int) { return -1; } int d_ioctl(int fd, ioctl_req_t request, char *mt) { return -1; } boffset_t lseek(DCR *dcr, off_t offset, int whence) { return -1; } -} +}; #endif /* USE_VTAPE */