11Fermer13
Pen^2Le 04/07/2009 à 22:28
C'est le résultat de la fonction "void abort(void)" de stdlib.h (http://www.linux-kheops.com/doc/man/manfr/man-html-0.9/man3/abort.3.html)
kpack.c
}
   /* Open file */
  static_flag = *name == '!';
  f = fopen (name + static_flag, "r");
  if (f == NULL) {
    fprintf (stderr, "Can't open file %s\n", name);
    abort ();
  

Bref, le message fait peur, mais c'est "normal" hehe
=> Not a bug, won't fix embarrassed