This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit cb1bf1c49b19f193ab0dd504cbb9cb9df865fb31 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Aug 2 16:51:35 2021 +0200 src/x2goclient-utils.c: change "long long" references to "long long int". --- src/x2goclient-utils.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/x2goclient-utils.c b/src/x2goclient-utils.c index 2f8590a..f274e24 100644 --- a/src/x2goclient-utils.c +++ b/src/x2goclient-utils.c @@ -79,7 +79,7 @@ void x2goclient_clear_strings (gpointer data) { * value exceeds maximum limit * and on overflows * - * Takes a string and converts it into a #long long integer. + * Takes a string and converts it into a #long long int. * * The error output parameters @conv_err, @min_err and @max_err MUST NOT be * %NULL at any time. @@ -91,12 +91,12 @@ void x2goclient_clear_strings (gpointer data) { * contain a meaningful value. * - If the values pointed to by @conv_err and @min_err are both %TRUE, an * underflow occurred and the scanned input value was smaller than the - * minimum representable value by #long long. The return value will - * not contain a meaningful value. + * minimum representable value by #long long int. The return + * value will not contain a meaningful value. * - If the values pointed to by @conv_err and @max_err are both %TRUE, an * overflow occurred and the scanned input value was higher than the - * maximum representable value by #long long. The return value will - * not contain a meaningful value. + * maximum representable value by #long long int. The return + * value will not contain a meaningful value. * - If the value pointed to by @conv_err is %FALSE and the value pointed to * by @min_err is %TRUE, the value was converted successfully but was * lower than the value passed via @limit_min and failed the minimum @@ -124,7 +124,8 @@ void x2goclient_clear_strings (gpointer data) { * Otherwise, the pointer value will not be a meaningful one and you should not * use or rely on it. * - * Returns: the converted value as a #long long, unless an error occurred + * Returns: the converted value as a #long long int, unless an error + * occurred * * Since: 0.0.0 */ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git