Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-21 18:50:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-21 23:30:08 +0300
commit380ce86a7f0a9f70f9b152541c53e74c52863ef5 (patch)
tree68d075c8e184186e56a32e9dd839cd7cbed1b673 /source/blender/blentranslation/msgfmt
parentc5862e0a06b75767fd863673c54aab54f27d1872 (diff)
Cleanup: comments (long lines) in avi, blf & blt
Diffstat (limited to 'source/blender/blentranslation/msgfmt')
-rw-r--r--source/blender/blentranslation/msgfmt/msgfmt.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/blentranslation/msgfmt/msgfmt.c b/source/blender/blentranslation/msgfmt/msgfmt.c
index 6beaef74a9f..4ab0bd29a5f 100644
--- a/source/blender/blentranslation/msgfmt/msgfmt.c
+++ b/source/blender/blentranslation/msgfmt/msgfmt.c
@@ -24,8 +24,10 @@
*
* Generate binary message catalog from textual translation description.
*
- * This program converts a textual Uniforum-style message catalog (.po file) into a binary GNU catalog (.mo file).
- * This is essentially the same function as the GNU msgfmt program, however, it is a simpler implementation.
+ * This program converts a textual Uniforum-style message catalog (.po file)
+ * into a binary GNU catalog (.mo file).
+ * This is essentially the same function as the GNU msgfmt program,
+ * however, it is a simpler implementation.
*
* Usage: msgfmt input.po output.po
*/
@@ -206,7 +208,8 @@ static char *generate(GHash *messages, size_t *r_output_size)
tot_vals_len += off->val_len + 1;
}
- /* The header is 7 32-bit unsigned integers. then comes the keys index table, then the values index table. */
+ /* The header is 7 32-bit unsigned integers.
+ * Then comes the keys index table, then the values index table. */
const uint32_t idx_keystart = 7 * 4;
const uint32_t idx_valstart = idx_keystart + 8 * num_keys;
/* We don't use hash tables, so the keys start right after the index tables. */