summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/usecputest.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-08-18 14:34:52 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-08-18 14:34:52 +0200
commit5f36b7efbf8a6a22c3371b34451e0975aea57b30 (patch)
tree1cd0987044be97c1143ad6a17d95ae63d10dcc29 /fastos/src/tests/usecputest.cpp
parentb6ccc1da256bb75c2ef6f2de1585bf767c030470 (diff)
NULL -> nullptr
Diffstat (limited to 'fastos/src/tests/usecputest.cpp')
-rw-r--r--fastos/src/tests/usecputest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastos/src/tests/usecputest.cpp b/fastos/src/tests/usecputest.cpp
index 930b1fb305f..9812ed7575d 100644
--- a/fastos/src/tests/usecputest.cpp
+++ b/fastos/src/tests/usecputest.cpp
@@ -63,7 +63,7 @@ void UseSomeCpu (int i, ThreadRunJob *threadRunJob)
int main (int argc, char **argv)
{
UseCpuTest app;
- setvbuf(stdout, NULL, _IOLBF, 8192);
+ setvbuf(stdout, nullptr, _IOLBF, 8192);
return app.Entry(argc, argv);
}