Skip to content

Commit f53946a

Browse files
committed
refactor: Remove trailing whitespace
1 parent 1605b02 commit f53946a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/secp256k1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ SECP256K1_API void secp256k1_context_destroy(
349349
* writes the message to stderr and calls abort. This default callback can be
350350
* replaced at link time if the preprocessor macro
351351
* USE_EXTERNAL_DEFAULT_CALLBACKS is defined, which is the case if the build
352-
* has been configured with --enable-external-default-callbacks (GNU Autotools) or
352+
* has been configured with --enable-external-default-callbacks (GNU Autotools) or
353353
* -DSECP256K1_USE_EXTERNAL_DEFAULT_CALLBACKS=ON (CMake). Then the
354354
* following two symbols must be provided to link against:
355355
* - void secp256k1_default_illegal_callback_fn(const char *message, void *data);

src/bench.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static void print_number(const int64_t x) {
5959
y /= 10;
6060
}
6161
} else if (c == 0) { /* fractional part is 0 */
62-
buffer[--ptr] = '0';
62+
buffer[--ptr] = '0';
6363
}
6464
buffer[--ptr] = '.';
6565
do {

src/field.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ static void secp256k1_fe_add_int(secp256k1_fe *r, int a);
233233
#define secp256k1_fe_mul_int(r, a) ASSERT_INT_CONST_AND_DO(a, secp256k1_fe_mul_int_unchecked(r, a))
234234

235235
/** Like secp256k1_fe_mul_int but a is not checked to be an integer constant expression.
236-
*
236+
*
237237
* Should not be called directly outside of tests.
238238
*/
239239
static void secp256k1_fe_mul_int_unchecked(secp256k1_fe *r, int a);

0 commit comments

Comments
 (0)