From: Owen Taylor Date: Thu, 13 Nov 2008 21:38:42 +0000 (+0000) Subject: girepository/girffi.c: Fix "Unexpected time for time_t" message. X-Git-Tag: GOBJECT_INTROSPECTION_0_6_1~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=985623ee120562f0ad0dd50ce6b94bfeb448f1bd;p=platform%2Fupstream%2Fgobject-introspection.git girepository/girffi.c: Fix "Unexpected time for time_t" message. svn path=/trunk/; revision=919 --- diff --git a/ChangeLog b/ChangeLog index 1682a28..75fa2a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-11-13 Owen Taylor + + * girepository/girffi.c: Fix "Unexpected time for time_t" + message. + 2008-11-13 Colin Walters Bug 558436 - avoid having scanner load app code diff --git a/girepository/girffi.c b/girepository/girffi.c index db5e87e..d6eefb2 100644 --- a/girepository/girffi.c +++ b/girepository/girffi.c @@ -75,7 +75,7 @@ g_ir_ffi_get_ffi_type (GITypeTag tag) #elif SIZEOF_TIME_T == 8 return &ffi_type_sint64; #else -# error "Unexpected time for time_t: not 4 or 8" +# error "Unexpected size for time_t: not 4 or 8" #endif case GI_TYPE_TAG_ULONG: return &ffi_type_ulong;