globa: Change unsigned int to size_t where it is the size of a byte array or an index/offset into it.
diff --git a/tests/test-get-async.cpp b/tests/test-get-async.cpp
index a50c34e..cbc8b97 100644
--- a/tests/test-get-async.cpp
+++ b/tests/test-get-async.cpp
@@ -29,7 +29,7 @@
   {
     ++callbackCount_;
     cout << "Got data packet with name " << data->getName().to_uri() << endl;
-    for (unsigned int i = 0; i < data->getContent().size(); ++i)
+    for (size_t i = 0; i < data->getContent().size(); ++i)
       cout << (*data->getContent())[i];
     cout << endl;  
   }