mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
cmph: Squash a lot of gcc -Wall compiler warnings
* Functions taking no parameters need to explicitly say (void). * Mark some functions as static that are * Comment out an unused function in bdz.c * Change loop indicies "i" to be unsigned if our limit is unsigned
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#include "cmph_types.h"
|
||||
typedef struct __vstack_t vstack_t;
|
||||
|
||||
vstack_t *vstack_new();
|
||||
vstack_t *vstack_new(void);
|
||||
void vstack_destroy(vstack_t *stack);
|
||||
|
||||
void vstack_push(vstack_t *stack, cmph_uint32 val);
|
||||
|
Reference in New Issue
Block a user