Compare commits

...

3 Commits

Author SHA1 Message Date
tTh
b19107d71b add two molly-guard 2024-11-12 12:50:31 +01:00
tTh
fabe94792b add two molly-guard 2024-11-12 12:49:43 +01:00
tTh
d1e67f7397 add a missing exit() 2024-11-12 11:36:57 +01:00
3 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e ; set -u
# ------------------------------------------------------------------
function build

View File

@ -1,5 +1,7 @@
#!/bin/bash -v
set -e ; set -u
cp libfloatimg.a /usr/local/lib
cp floatimg.h /usr/local/include

View File

@ -92,6 +92,7 @@ if (2 != argc-optind) {
foo = convertir_fimg_en_PNG(argv[optind], argv[optind+1], to_gray);
if (foo) {
fprintf(stderr, "%s : got a %d from convertor\n", argv[0], foo);
exit(1);
}
return 0;