diff options
Diffstat (limited to 'src/cg-brilliance.c')
-rw-r--r-- | src/cg-brilliance.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cg-brilliance.c b/src/cg-brilliance.c index 40d74a7..3541d03 100644 --- a/src/cg-brilliance.c +++ b/src/cg-brilliance.c @@ -1,6 +1,6 @@ /** * cg-tools -- Cooperative gamma-enabled tools - * Copyright (C) 2016 Mattias Andrée (maandree@kth.se) + * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ /** * The default filter priority for the program */ -const int64_t default_priority = ((int64_t)1) << 61; +const int64_t default_priority = (int64_t)1 << 61; /** * The default class for the program @@ -128,7 +128,7 @@ int handle_opt(char* opt, char* arg) * * @param out Output parameter for the value * @param str The string - * @retunr Zero on success, -1 if the string is invalid + * @return Zero on success, -1 if the string is invalid */ static int parse_double(double* restrict out, const char* restrict str) { |