summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Fl_Table_Row.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Table_Row.cxx b/src/Fl_Table_Row.cxx
index 1dc132acc..29a0a1557 100644
--- a/src/Fl_Table_Row.cxx
+++ b/src/Fl_Table_Row.cxx
@@ -53,7 +53,7 @@ Fl_Table_Row::CharVector::~CharVector() { // DTOR
void Fl_Table_Row::CharVector::size(int count) {
if (count != _size) {
- arr = (char*)realloc(arr, count * sizeof(char));
+ arr = (char*)realloc(arr, (unsigned)count * sizeof(char));
_size = count;
}
}