Skip to content
Snippets Groups Projects
Commit d65fae46 authored by Joel Uckelman's avatar Joel Uckelman
Browse files

Fixed variable name typo.

parent 380d3557
No related branches found
No related tags found
No related merge requests found
...@@ -139,7 +139,7 @@ uint8_t ...@@ -139,7 +139,7 @@ uint8_t
* @param a_images Array of paths to the image parts * @param a_images Array of paths to the image parts
* @param a_type Image type * @param a_type Image type
* @param a_ssize Size of device sector in bytes (or 0 for default) * @param a_ssize Size of device sector in bytes (or 0 for default)
* @param dataSourceId An ASCII-printable identifier for the data source that is intended to be unique across multiple cases (e.g., a UUID) * @param a_dataSourceId An ASCII-printable identifier for the data source that is intended to be unique across multiple cases (e.g., a UUID)
* @return 0 for success, 1 for failure * @return 0 for success, 1 for failure
*/ */
uint8_t uint8_t
...@@ -200,7 +200,7 @@ uint8_t ...@@ -200,7 +200,7 @@ uint8_t
return 0; return 0;
#else #else
return openImageUtf8(a_num, a_images, a_type, a_ssize, dataSourceId); return openImageUtf8(a_num, a_images, a_type, a_ssize, a_dataSourceId);
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment