changeset 946:35a9e556c82c

improved coding style of test programs
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 09 May 2010 23:21:01 +0200
parents 5d47a5e4b43a
children d19d21103127
files src/gtk-test.c src/jpeg-test.c src/libgomp-test.c src/librsvg-test.c src/sdl-test.c src/sdl_image-test.c src/sdl_mixer-test.c src/sdl_net-test.c
diffstat 8 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtk-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/gtk-test.c	Sun May 09 23:21:01 2010 +0200
@@ -3,7 +3,7 @@
 
 #include <gtk/gtk.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     GtkWidget* window;
     GtkWidget* button;
--- a/src/jpeg-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/jpeg-test.c	Sun May 09 23:21:01 2010 +0200
@@ -5,7 +5,7 @@
 #include <windows.h>
 #include <jpeglib.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     boolean test_boolean;
     INT32 test_int32;
--- a/src/libgomp-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/libgomp-test.c	Sun May 09 23:21:01 2010 +0200
@@ -4,7 +4,7 @@
 #include <omp.h>
 #include <stdio.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     (void)argc;
     (void)argv;
--- a/src/librsvg-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/librsvg-test.c	Sun May 09 23:21:01 2010 +0200
@@ -3,7 +3,7 @@
 
 #include <librsvg/rsvg.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     RsvgHandle* handle;
 
--- a/src/sdl-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/sdl-test.c	Sun May 09 23:21:01 2010 +0200
@@ -3,7 +3,7 @@
 
 #include <SDL.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     SDL_Surface *screen;
 
--- a/src/sdl_image-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/sdl_image-test.c	Sun May 09 23:21:01 2010 +0200
@@ -4,7 +4,7 @@
 #include <SDL.h>
 #include <SDL_image.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     SDL_Surface *image;
     SDL_Surface *screen;
--- a/src/sdl_mixer-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/sdl_mixer-test.c	Sun May 09 23:21:01 2010 +0200
@@ -3,7 +3,7 @@
 
 #include <SDL_mixer.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     int initted;
 
--- a/src/sdl_net-test.c	Sun May 09 23:16:22 2010 +0200
+++ b/src/sdl_net-test.c	Sun May 09 23:21:01 2010 +0200
@@ -3,7 +3,7 @@
 
 #include <SDL_net.h>
 
-int main(int argc, char* argv[])
+int main(int argc, char *argv[])
 {
     (void)argc;
     (void)argv;