From: Dan Fandrich Date: Tue, 28 Aug 2018 23:32:36 +0000 (+0200) Subject: Unify some parameter names between declarations and definitions. X-Git-Tag: libexif-0_6_22-release~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=31d2cec5f624f179450eb5290328e7c0554e6d99;p=platform%2Fupstream%2Flibexif.git Unify some parameter names between declarations and definitions. --- diff --git a/libexif/exif-mnote-data.h b/libexif/exif-mnote-data.h index 19e1de5..7e55a95 100644 --- a/libexif/exif-mnote-data.h +++ b/libexif/exif-mnote-data.h @@ -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. *