Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2004-09-09 15:35:15 +0400
committerCorinna Vinschen <corinna@vinschen.de>2004-09-09 15:35:15 +0400
commit1f97020ae6d660cee2fc0484ed54f971226ddaa4 (patch)
treed54cbfed9b7d248959b8fbf5aea1c50fd67dbaf8 /winsup/cygwin/fhandler_tape.cc
parent6423296840ac7d7dc80bfc8a48b5b02ee23ff277 (diff)
* fhandler_tape.cc (fhandler_dev_tape::open): Fix typo.
Diffstat (limited to 'winsup/cygwin/fhandler_tape.cc')
-rw-r--r--winsup/cygwin/fhandler_tape.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tape.cc b/winsup/cygwin/fhandler_tape.cc
index ea8853722..5b7c69909 100644
--- a/winsup/cygwin/fhandler_tape.cc
+++ b/winsup/cygwin/fhandler_tape.cc
@@ -1241,7 +1241,7 @@ fhandler_dev_tape::open (int flags, mode_t)
TAPE_SPACE_FILEMARKS, 1, true);
devbufsiz = mt->drive (driveno ())->dp ()->MaximumBlockSize;
- devbuf = new char (devbufsiz);
+ devbuf = new char [devbufsiz];
devbufstart = devbufend = 0;
}
else