diff options
author | - <nemo@alice.(none)> | 2013-05-11 13:04:27 +0200 |
---|---|---|
committer | - <nemo@alice.(none)> | 2013-05-11 13:04:27 +0200 |
commit | c66937043eaf771f46ad0ae049d0d4b44dc3c42c (patch) | |
tree | 77e0a8d94939e40ad024a898cb2f1f285ba49e75 | |
parent | 6d4bfbf54cdd54a6f730f8f153612192d9855ee7 (diff) |
Corrected format indebug
-rw-r--r-- | plugingui/listboxbasic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/listboxbasic.cc b/plugingui/listboxbasic.cc index 66c1ab5..544fd96 100644 --- a/plugingui/listboxbasic.cc +++ b/plugingui/listboxbasic.cc @@ -84,7 +84,7 @@ void GUI::ListBoxBasic::addItem(std::string name, std::string value) void GUI::ListBoxBasic::addItems(std::vector<GUI::ListBoxBasic::Item> &is) { - DEBUG(list, "addItems %d\n", is.size()); + DEBUG(list, "addItems %lu\n", is.size()); std::vector<GUI::ListBoxBasic::Item>::iterator i = is.begin(); while(i != is.end()) { items.push_back(*i); |