diff options
author | Felicia Lim <flim@google.com> | 2019-03-01 13:00:18 -0800 |
---|---|---|
committer | Felicia Lim <flim@google.com> | 2019-03-01 15:15:36 -0800 |
commit | db082963b98323d88535f4522ba710208ba93a1a (patch) | |
tree | d0144af4bd011a3239721a56024da80415141a0c /src/mapping_matrix.h | |
parent | 6554681d17b1a6bfe79cfeff51cbeeeaec279a3f (diff) | |
download | opus-db082963b98323d88535f4522ba710208ba93a1a.tar.gz |
Fix mismatching arg names in function declaration and definition
Diffstat (limited to 'src/mapping_matrix.h')
-rw-r--r-- | src/mapping_matrix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapping_matrix.h b/src/mapping_matrix.h index 9c20483e..98bc82df 100644 --- a/src/mapping_matrix.h +++ b/src/mapping_matrix.h @@ -53,7 +53,7 @@ opus_int32 mapping_matrix_get_size(int rows, int cols); opus_int16 *mapping_matrix_get_data(const MappingMatrix *matrix); void mapping_matrix_init( - MappingMatrix * const st, + MappingMatrix * const matrix, int rows, int cols, int gain, |