summaryrefslogtreecommitdiff
path: root/auto_tests/crypto_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-28 21:30:39 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-30 23:35:50 +0000
commit92ffad1a72bc8c422426d52ac408bd71242dd047 (patch)
treef592f353068dd2043525dd2cc04d6124a4ed4bc4 /auto_tests/crypto_test.c
parent623e9ac331df7323660e21c8a2226523a5ee713b (diff)
Use nullptr as NULL pointer constant instead of NULL or 0.
This changes only code, no string literals or comments.
Diffstat (limited to 'auto_tests/crypto_test.c')
-rw-r--r--auto_tests/crypto_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/crypto_test.c b/auto_tests/crypto_test.c
index 5f162499..a1b7fd30 100644
--- a/auto_tests/crypto_test.c
+++ b/auto_tests/crypto_test.c
@@ -434,7 +434,7 @@ static Suite *crypto_suite(void)
434 434
435int main(int argc, char *argv[]) 435int main(int argc, char *argv[])
436{ 436{
437 srand((unsigned int) time(NULL)); 437 srand((unsigned int) time(nullptr));
438 438
439 Suite *crypto = crypto_suite(); 439 Suite *crypto = crypto_suite();
440 SRunner *test_runner = srunner_create(crypto); 440 SRunner *test_runner = srunner_create(crypto);