Removed trailing whitespace.
[synfig.git] / ETL / trunk / test / smart_ptr.cpp
index 287ada5..c686859 100644 (file)
@@ -86,8 +86,8 @@ typedef list< other_obj_smart_ptr > other_obj_list;
 
 int smart_ptr_basic_test(void)
 {
-       printf("smart_ptr: Size of a smart_ptr: %d\n",sizeof(obj_smart_ptr));
-       printf("smart_ptr: Size of a reference_counter: %d\n",sizeof(etl::reference_counter));
+       printf("smart_ptr: Size of a smart_ptr: %u\n",(unsigned int)sizeof(obj_smart_ptr));
+       printf("smart_ptr: Size of a reference_counter: %u\n",(unsigned int)sizeof(etl::reference_counter));
 
 
        printf("smart_ptr: Basic test: ");
@@ -314,6 +314,6 @@ int main()
        error+=smart_ptr_general_use_test();
        error+=smart_ptr_inheritance_test();
        error+=loose_smart_ptr_test();
-       
+
        return error;
 }