Unify some parameter names between declarations and definitions.
authorDan Fandrich <dan@coneharvesters.com>
Tue, 28 Aug 2018 23:32:36 +0000 (01:32 +0200)
committerDan Fandrich <dan@coneharvesters.com>
Tue, 28 Aug 2018 23:32:36 +0000 (01:32 +0200)
libexif/exif-mnote-data.h

index 19e1de5..7e55a95 100644 (file)
@@ -39,10 +39,10 @@ void exif_mnote_data_unref (ExifMnoteData *);
  *
  * \param[in] d MakerNote data
  * \param[in] buf pointer to raw MakerNote tag data
- * \param[in] buf_siz number of bytes of data at buf
+ * \param[in] buf_size number of bytes of data at buf
  */
 void exif_mnote_data_load (ExifMnoteData *d, const unsigned char *buf,
-                          unsigned int buf_siz);
+                          unsigned int buf_size);
 
 /*!
  * Save the raw MakerNote data into a memory buffer.  The buffer is
@@ -51,10 +51,10 @@ void exif_mnote_data_load (ExifMnoteData *d, const unsigned char *buf,
  *
  * \param[in,out] d extract the data from this structure 
  * \param[out] buf pointer to buffer pointer containing MakerNote data on return
- * \param[out] buf_siz pointer to the size of the buffer
+ * \param[out] buf_size pointer to the size of the buffer
  */
 void exif_mnote_data_save (ExifMnoteData *d, unsigned char **buf,
-                          unsigned int *buf_siz);
+                          unsigned int *buf_size);
 
 /*! Return the number of tags in the MakerNote.
  *