1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| [jany@localhost RPM]$ make
gcc -o main.o -c main.c `pkg-config --cflags gtk+-2.0`
gcc -o pendu.o -c pendu.c `pkg-config --cflags gtk+-2.0`
gcc -o pendu main.o pendu.o commun.o `pkg-config --libs gtk+-2.0`
gcc -o lecture_pendu.o -c lecture_pendu.c `pkg-config --cflags gtk+-2.0`
gcc -o lecture.o -c lecture.c `pkg-config --cflags gtk+-2.0`
gcc -o lecture_pendu lecture_pendu.o lecture.o commun.o `pkg-config --libs gtk+-2.0`
[jany@localhost RPM]$ ./pendu
Séquence d'octets non valide en entrée du convertisseur
(pendu:21952): GLib-WARNING **: GError set over the top of a previous GError or uninitialized memory.
This indicates a bug in someone's code. You must ensure an error is NULL before it's set.
The overwriting error message was: Séquence d'octets non valide en entrée du convertisseur
��
��
��
Gtk-ERROR **: file ../../gtk/gtkcontainer.c: line 2447 (gtk_container_propagate_expose): assertion failed: (child->parent == GTK_WIDGET (container))
aborting...
Abandon
[jany@localhost RPM]$ |