summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-12-14 10:07:33 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-12-14 10:07:33 (GMT)
commitc5733d2e19f5de783e776dce05bd48f1a9e99c90 (patch)
treeb07a35019946a10d36a7e8927c97c25246bd5aa5 /qtools
parent5927aea269d6567c850c6ddc87970779aca5bc32 (diff)
downloadDoxygen-c5733d2e19f5de783e776dce05bd48f1a9e99c90.zip
Doxygen-c5733d2e19f5de783e776dce05bd48f1a9e99c90.tar.gz
Doxygen-c5733d2e19f5de783e776dce05bd48f1a9e99c90.tar.bz2
issue #8247 declaration different in cpp and h file of qstrncmp
argument names of source and destination were in h file switched compared to the cpp file, no harm done it are just names in the prototype but it is confusing.
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qcstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qcstring.h b/qtools/qcstring.h
index 0f3f932..75bdf29 100644
--- a/qtools/qcstring.h
+++ b/qtools/qcstring.h
@@ -58,7 +58,7 @@ inline char *cstrcpy( char *dst, const char *src )
inline char *qstrcpy( char *dst, const char *src )
{ return src ? strcpy(dst, src) : 0; }
-char * qstrncpy(char *src,const char *dst, uint len);
+char * qstrncpy(char *dst,const char *src, uint len);
inline int cstrcmp( const char *str1, const char *str2 )
{ return strcmp(str1,str2); }