ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rcmain.c
(Generate patch)

Comparing ray/src/rt/rcmain.c (file contents):
Revision 2.26 by greg, Mon Feb 6 20:37:06 2023 UTC vs.
Revision 2.30 by greg, Fri Apr 7 15:00:11 2023 UTC

# Line 199 | Line 199 | main(int argc, char *argv[])
199          strcat(RFeatureList, RCONTRIB_FEATURES);
200          if (argc > 1 && !strcmp(argv[1], "-features"))
201                  return feature_status(argc-2, argv+2);
202 < #if defined(_WIN32) || defined(_WIN64)
203 <        _setmaxstdio(2048);             /* increase file limit to maximum */
202 > #if defined(_WIN32) || defined(_WIN64)  /* increase file limit to maximum */
203 >        for (i = 8192; i > _IOB_ENTRIES; i >>= 1)
204 >                if (_setmaxstdio(i) == i)
205 >                        break;
206   #endif
207                                          /* initialize calcomp routines early */
208          initfunc();
# Line 402 | Line 404 | badopt:
404  
405   void
406   wputs(                          /* warning output function */
407 <        char    *s
407 >        const char      *s
408   )
409   {
410          int  lasterrno = errno;
# Line 413 | Line 415 | wputs(                         /* warning output function */
415  
416   void
417   eputs(                          /* put string to stderr */
418 <        char  *s
418 >        const char  *s
419   )
420   {
421          static int  midline = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines