diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-12-17 21:52:25 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-12-17 21:52:25 +0000 |
commit | 6e2e285142895f3ed4b7e5b99ff1595092d84969 (patch) | |
tree | d681a1852b4adc8a2540d893d782c5e10ebef84e /dm.c | |
parent | 02496faab558fa758adf3a24006201cf5ab557fb (diff) | |
download | dm-6e2e285142895f3ed4b7e5b99ff1595092d84969.tar.gz dm-6e2e285142895f3ed4b7e5b99ff1595092d84969.zip |
Fixed few warnings
Diffstat (limited to 'dm.c')
-rw-r--r-- | dm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ int ast2tb( ast_root *ast, mt_table *mt ) /*****************************************************************************/ /* primitive matchin for loop, get table sorted then more advanced solution * maycome */ -int match( mt_table *mt, unsigned char *buf, size_t size ) +int match( mt_table *mt, char *buf, size_t size ) { //anonymouse function int pr(char *str, int sz) |