Opened 19 years ago
Closed 19 years ago
#996 closed enhancement (fixed)
psModules/src/imcombine/pmSubtractionKernels.c uses strcasecmp without including strings.h
| Reported by: | Owned by: | Paul Price | |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | imcombine | Version: | 2.3 |
| Severity: | minor | Keywords: | |
| Cc: |
Description
man strcasecmp says that it's declared in <strings.h> but pmSubtractionKernels.c only includes <string.h> without the s.
As far as I can tell, the fix seems to be simply adding
#include <strings.h> to psModules/src/imcombine/pmSubtractionKernels.c
This only seems to happen on MacOS, even though strcasecmp is also in <strings.h> on Linuxes. Go figure.
Note:
See TracTickets
for help on using tickets.

Fixed in CVS head.