Commit c8022e6c by Yury G. Kudryashov Committed by Yury G. Kudryashov

Add `const` qualifier

This fixes a warning in `examples/describe.c` without breaking the main build.

OTOH, I'm not sure if this is an API-compatible change.
parent f85a9c27
...@@ -94,7 +94,7 @@ typedef struct { ...@@ -94,7 +94,7 @@ typedef struct {
* If the workdir is dirty and this is set, this string will * If the workdir is dirty and this is set, this string will
* be appended to the description string. * be appended to the description string.
*/ */
char *dirty_suffix; const char *dirty_suffix;
} git_describe_format_options; } git_describe_format_options;
#define GIT_DESCRIBE_FORMAT_OPTIONS_VERSION 1 #define GIT_DESCRIBE_FORMAT_OPTIONS_VERSION 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment