Changeset 8675
- Timestamp:
- Aug 29, 2006, 12:07:23 PM (20 years ago)
- Location:
- trunk/ppImage/src
- Files:
-
- 5 edited
-
ppFocus.c (modified) (3 diffs)
-
ppFocusGetFWHM.c (modified) (1 diff)
-
ppImage.c (modified) (3 diffs)
-
ppImageDetrendNonLinear.c (modified) (2 diffs)
-
ppMem.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppFocus.c
r7757 r8675 13 13 pmConfig *config = ppFocusArguments(argc, argv); 14 14 if (config == NULL) { 15 psErrorStackPrint(stderr, " ");15 psErrorStackPrint(stderr, " "); 16 16 exit(1); 17 17 } … … 34 34 ppImageOptions *options = ppFocusParseCamera(config, i); 35 35 if (options == NULL) { 36 psErrorStackPrint(stderr, " ");36 psErrorStackPrint(stderr, " "); 37 37 exit(1); 38 38 } … … 42 42 // 43 43 if (!ppImageLoop(config, options)) { 44 psErrorStackPrint(stderr, " ");44 psErrorStackPrint(stderr, " "); 45 45 exit(1); 46 46 } -
trunk/ppImage/src/ppFocusGetFWHM.c
r7757 r8675 69 69 psVectorExtend (focus, 10, 1); 70 70 71 psLogMsg ("ppFocus", 4, "focus: %f, fwhm: %f (%d ,%d)\n", FOCUS, FWHM, FWHMnum);71 psLogMsg ("ppFocus", 4, "focus: %f, fwhm: %f (%d)\n", FOCUS, FWHM, FWHMnum); 72 72 73 73 psFree (view); -
trunk/ppImage/src/ppImage.c
r7677 r8675 13 13 pmConfig *config = ppImageArguments(argc, argv); 14 14 if (config == NULL) { 15 psErrorStackPrint(stderr, " ");15 psErrorStackPrint(stderr, " "); 16 16 exit(1); 17 17 } … … 21 21 ppImageOptions *options = ppImageParseCamera(config); 22 22 if (options == NULL) { 23 psErrorStackPrint(stderr, " ");23 psErrorStackPrint(stderr, " "); 24 24 exit(1); 25 25 } … … 27 27 // Image Arithmetic Loop 28 28 if (!ppImageLoop(config, options)) { 29 psErrorStackPrint(stderr, " ");29 psErrorStackPrint(stderr, " "); 30 30 exit(1); 31 31 } -
trunk/ppImage/src/ppImageDetrendNonLinear.c
r6817 r8675 67 67 if (! concept) { 68 68 psLogMsg("phase2", PS_LOG_WARN, "Unable to find value of concept %s " 69 "for non-linearity correction --- ignored.\n", options->nonLinearSource);69 "for non-linearity correction --- ignored.\n", (char *)options->nonLinearSource); 70 70 return false; 71 71 } … … 74 74 75 75 if (concept->type != PS_DATA_STRING) { 76 psLogMsg("phase2", PS_LOG_WARN, "Type for concept % sisn't STRING, as"76 psLogMsg("phase2", PS_LOG_WARN, "Type for concept %p isn't STRING, as" 77 77 " expected for non-linearity correction --- ignored.\n", 78 78 concept); -
trunk/ppImage/src/ppMem.c
r6404 r8675 81 81 psFree(leaks); 82 82 83 psLogMsg(__func__, PS_LOG_INFO, "Memory used: % ld\nLargest id: %ld (%ld bytes)", total, index, largest);83 psLogMsg(__func__, PS_LOG_INFO, "Memory used: %zd\nLargest id: %ld (%zd bytes)", total, index, largest); 84 84 85 85 }
Note:
See TracChangeset
for help on using the changeset viewer.
