summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2007-07-13 21:22:25 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-02-27 21:09:15 +0200
commitaacbf702d93814477914e6dcab846e27a9733b43 (patch)
tree91c2e1325d7f52047202756b41eabfafe0005b4c
parent82db6e0bfff7ed0c5299183f1f06d90017d57839 (diff)
eliminate compiler warning
git-svn-id: http://svn.asterisk.org/svn/octasic_api/oct612x/trunk@30 537310ab-6354-42db-a3cc-247b777f7be6
-rw-r--r--software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
index 9818c33..ccf6110 100644
--- a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
+++ b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
@@ -2079,7 +2079,7 @@ UINT32 Oct6100ApiCheckImageFileHeader(
UINT32 ulStrLen;
ulStrLen = Oct6100ApiStrLen( (PUINT8)cOCT6100_IMAGE_START_STRING );
- pszImageInfoStart = Oct6100ApiStrStr(f_pChipOpen->pbyImageFile,(PUINT8)cOCT6100_IMAGE_START_STRING,
+ pszImageInfoStart = (PUINT8) Oct6100ApiStrStr(f_pChipOpen->pbyImageFile,(PUINT8)cOCT6100_IMAGE_START_STRING,
f_pChipOpen->pbyImageFile + ulStrLen);
if (pszImageInfoStart == NULL)
return cOCT6100_ERR_OPEN_IMAGE_FILE;