]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typo so things compile on systems without vtape support.
authorMarco van Wieringen <mvw@planets.elm.net>
Wed, 11 Aug 2010 13:30:25 +0000 (15:30 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 2 Sep 2010 13:52:31 +0000 (15:52 +0200)
bacula/src/stored/vtape.h

index b2bef53b690ee2b7f43c9c42424900a8fc846eab..42b49c927b99408480f9edf84b74c8105b8f6327 100644 (file)
@@ -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 */