switch( import(srcformat, srcfile) ) {
case -1:
- printf("input format %s not supported\n", srcformat);
+ fprintf(stderr,
+ "input format %s not supported\n", srcformat);
ret = 1;
case 1:
- printf("cannot read file %s\n", srcfile);
+ fprintf(stderr, "cannot read file %s\n", srcfile);
ret = 1;
}
if(!ret)
switch( export(dstformat, dstfile) ) {
case -1:
- printf("output format %s not supported\n",
- dstformat);
+ fprintf(stderr,
+ "output format %s not supported\n",
+ dstformat);
ret = 1;
break;
case 1:
- printf("cannot write file %s\n", dstfile);
+ fprintf(stderr,
+ "cannot write file %s\n", dstfile);
ret = 1;
break;
}
dnl abook configure.in
AC_INIT(abook.c)
-AM_INIT_AUTOMAKE(abook, 0.4.15)
+AM_INIT_AUTOMAKE(abook, 0.4.16-cvs)
AM_CONFIG_HEADER(config.h)
AC_CANONICAL_HOST