diff options
Diffstat (limited to 'src/common/db.h')
-rw-r--r-- | src/common/db.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/db.h b/src/common/db.h index 5c7d42d87..ec6539bc6 100644 --- a/src/common/db.h +++ b/src/common/db.h @@ -715,7 +715,7 @@ void linkdb_final ( struct linkdb_node** head ); /// /// /// @param __from Initial index of the entry -/// @param __end Target index of the entry +/// @param __to Target index of the entry /// @param __arr Array /// @param __type Type of entry #define ARR_MOVE(__from, __to, __arr, __type) \ @@ -738,7 +738,7 @@ void linkdb_final ( struct linkdb_node** head ); /// ex: ARR_MOVERIGHT(1, 4, list, int);// move index 1 to index 4 /// /// @param __from Initial index of the entry -/// @param __end Target index of the entry +/// @param __to Target index of the entry /// @param __arr Array /// @param __type Type of entry #define ARR_MOVERIGHT(__from, __to, __arr, __type) \ |