diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-16 19:20:30 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-16 19:20:30 +0000 |
commit | f41de7bb8b526fa9ad16120ed5b6a6505a132c92 (patch) | |
tree | ee04459dfbc3faa5454ce88aa054c829123d2bba | |
parent | 6206a3c5a5a019bffd2db6fe6e9b3e7aca535fa7 (diff) | |
download | ChibiOS-f41de7bb8b526fa9ad16120ed5b6a6505a132c92.tar.gz ChibiOS-f41de7bb8b526fa9ad16120ed5b6a6505a132c92.tar.bz2 ChibiOS-f41de7bb8b526fa9ad16120ed5b6a6505a132c92.zip |
SDC. One more uint8_t, uint32_t mixture fixed.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/sdc_dev2@4101 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/src/sdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/src/sdc.c b/os/hal/src/sdc.c index 6fd4e211d..c2e6c1b74 100644 --- a/os/hal/src/sdc.c +++ b/os/hal/src/sdc.c @@ -52,7 +52,7 @@ *
* @notapi
*/
-static uint32_t _sdc_get_slice(uint32_t *data, int8_t end, int8_t start) {
+static uint32_t _sdc_get_slice(uint32_t *data, int32_t end, int32_t start) {
uint32_t word = 0;
uint32_t mask = 0;
|