summaryrefslogtreecommitdiff
path: root/src/seqWindow.cpp
diff options
context:
space:
mode:
authorMarkus Grüneis <gimpf@gimpf.org>2010-02-18 09:15:27 +0000
committerMarkus Grüneis <gimpf@gimpf.org>2010-02-18 09:15:27 +0000
commite191eab68d905bfe14e3590a92fa653f0ae2ebce (patch)
treea5837b067ecab92c645008b537087b0d163ef1ab /src/seqWindow.cpp
parentwhitespace only change: unified formatting with "astyle --style=k/r --indent=... (diff)
non-functional changes only: use standard writing of stdint.h types; still import from boost (compiler compatibility)
Diffstat (limited to 'src/seqWindow.cpp')
-rw-r--r--src/seqWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seqWindow.cpp b/src/seqWindow.cpp
index e860464..992a71c 100644
--- a/src/seqWindow.cpp
+++ b/src/seqWindow.cpp
@@ -54,7 +54,7 @@ void SeqWindowElement::init(window_size_t w, seq_nr_t m)
if(window_) {
delete[] window_;
}
- window_ = new u_int8_t[w];
+ window_ = new uint8_t[w];
memset(window_, 0, w);
pos_ = 0;
max_ = m;