From d257a0c3f11c0845d7eda1c2c78b2c32b5ec7c4c Mon Sep 17 00:00:00 2001
From: Sebastian Müller <senpo@posteo.de>
Date: Sat, 20 Oct 2018 13:38:47 +0200
Subject: Change vector length variables to unsigned type

---
 gr-blocks/lib/vector_source_impl.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'gr-blocks/lib/vector_source_impl.h')

diff --git a/gr-blocks/lib/vector_source_impl.h b/gr-blocks/lib/vector_source_impl.h
index b4161d68fc..19966d01e8 100644
--- a/gr-blocks/lib/vector_source_impl.h
+++ b/gr-blocks/lib/vector_source_impl.h
@@ -36,13 +36,13 @@ template<class T>
       std::vector<T> d_data;
       bool d_repeat;
       unsigned int d_offset;
-      int d_vlen;
+      unsigned int d_vlen;
       bool d_settags;
       std::vector<tag_t> d_tags;
 
     public:
       vector_source_impl (const std::vector<T> &data,
-                  bool repeat, int vlen,
+                  bool repeat, unsigned int vlen,
                   const std::vector<tag_t> &tags);
       ~vector_source_impl ();
 
-- 
cgit v1.2.3