diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-06 11:49:06 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-06 11:49:06 +0000 |
commit | 35306d123149bbbb80414691022def865bc2d80d (patch) | |
tree | 684718f58c81d6af64cbdf02ad078b068fd7a65a /srUtils.h | |
parent | e5a6c66766afd57105dda0cfabacb11d2b8e1d6b (diff) | |
download | rsyslog-35306d123149bbbb80414691022def865bc2d80d.tar.gz rsyslog-35306d123149bbbb80414691022def865bc2d80d.tar.xz rsyslog-35306d123149bbbb80414691022def865bc2d80d.zip |
- fixed a bug with integer conversion in srUtils.c
- changed some lib functions to work on long instead of int to care for 64
bit platforms (just to be on the save side)
Diffstat (limited to 'srUtils.h')
-rwxr-xr-x | srUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ * * \param iToConv The integer to be converted. */ -rsRetVal srUtilItoA(char *pBuf, int iLenBuf, int iToConv); +rsRetVal srUtilItoA(char *pBuf, int iLenBuf, long iToConv); /** * A method to duplicate a string for which the length is known. |