about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-05-30 04:12:07 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-05-30 04:12:07 +0000
commite6dda147e0a4d1edab6b64c25e19a11dcad6d0e5 (patch)
tree0a87fd52fefbd13e2d5fcbc15c17949afc8de7f9 /converter
parent3a89edb7a07c96e24d4e233a7c81df72a6d5fa88 (diff)
downloadnetpbm-mirror-e6dda147e0a4d1edab6b64c25e19a11dcad6d0e5.tar.gz
netpbm-mirror-e6dda147e0a4d1edab6b64c25e19a11dcad6d0e5.tar.xz
netpbm-mirror-e6dda147e0a4d1edab6b64c25e19a11dcad6d0e5.zip
Undo previous mistaken change
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3824 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-rw-r--r--converter/other/cameratopam/cameratopam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/cameratopam/cameratopam.c b/converter/other/cameratopam/cameratopam.c
index d8936f30..78eb6854 100644
--- a/converter/other/cameratopam/cameratopam.c
+++ b/converter/other/cameratopam/cameratopam.c
@@ -23,6 +23,7 @@
 #include <limits.h>
 #include <math.h>
 #include <time.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -46,7 +47,6 @@
 #include "bayer.h"
 #include "foveon.h"
 #include "dng.h"
-#include "stdio_nofail.h"
 
 /*
    All global variables are defined here, and all functions that
@@ -233,7 +233,7 @@ fixBadPixels(Image const image) {
         }
         free (fname);
         if (fp) {
-            while (fgets_nofail (line, 128, fp)) {
+            while (fgets (line, 128, fp)) {
                 char * cp;
                 cp = strchr (line, '#');
                 if (cp) *cp = 0;