[gobject-introspection] Some small cosmetic tweaks



commit bec176d20df2f0e25a0f3dc84a3dbe3edeecd65f
Author: Andreas Rottmann <a rottmann gmx at>
Date:   Thu Mar 19 01:25:09 2009 +0100

    Some small cosmetic tweaks
    
    * Fix compiler warnings:
    
    - Missing return value in annotation-testing code
    
    - Fix two function declarations to have a (void) parameter list --
      this is not C++ ;-)
    
    * Add tools/g-ir-scanner to .gitignore, as it's now generated
---
 .gitignore                 |    1 +
 tests/scanner/annotation.c |    1 +
 tests/scanner/foo.h        |    6 +++---
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index b3e6131..2ec0f4a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -103,3 +103,4 @@ tests/scanner/utility-1.0.typelib
 tests/extended.gir.test
 tools/g-ir-compiler
 tools/g-ir-generate
+tools/g-ir-scanner
diff --git a/tests/scanner/annotation.c b/tests/scanner/annotation.c
index 7c25d9a..cbc9244 100644
--- a/tests/scanner/annotation.c
+++ b/tests/scanner/annotation.c
@@ -618,6 +618,7 @@ annotation_object_extra_annos (AnnotationObject *object)
 char *
 annotation_get_source_file (void)
 {
+  return NULL;
 }
 
 /**
diff --git a/tests/scanner/foo.h b/tests/scanner/foo.h
index 8097cfc..be3a955 100644
--- a/tests/scanner/foo.h
+++ b/tests/scanner/foo.h
@@ -120,7 +120,7 @@ gboolean              foo_object_virtual_method    (FooObject *object, int first
 
 void                  foo_object_read              (FooObject *object, int offset, int length);
 
-int                   foo_object_static_meth       ();
+int                   foo_object_static_meth       (void);
 
 struct _FooSubobject
 {
@@ -133,9 +133,9 @@ struct _FooSubobjectClass
 };
 
 GType                 foo_subobject_get_type       (void) G_GNUC_CONST;
-FooSubobject*         foo_subobject_new            ();
+FooSubobject*         foo_subobject_new            (void);
 
-FooObject *           foo_object_get_default       ();
+FooObject *           foo_object_get_default       (void);
 
 GType                 foo_buffer_get_type          (void);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]