diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 23:52:43 +0900 |
commit | 2afc8bbbe4f529c5847cfbe1757e55c47e4656fe (patch) | |
tree | 76a398670f2197f0682ccad3beff2875555af078 /kcontrol/info/memory_tru64.cpp | |
parent | 25a1c781481d9f53476251d1d2059643cf3ac67a (diff) | |
download | tdebase-2afc8bbbe4f529c5847cfbe1757e55c47e4656fe.tar.gz tdebase-2afc8bbbe4f529c5847cfbe1757e55c47e4656fe.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8250c8e42310cb39ceb6ae425bc8546208733e99)
Diffstat (limited to 'kcontrol/info/memory_tru64.cpp')
-rw-r--r-- | kcontrol/info/memory_tru64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/info/memory_tru64.cpp b/kcontrol/info/memory_tru64.cpp index 667ffbcca..c3cbb2fae 100644 --- a/kcontrol/info/memory_tru64.cpp +++ b/kcontrol/info/memory_tru64.cpp @@ -30,7 +30,7 @@ extern "C" void vm_statistics(task_t, vm_statistics_data_t*); void KMemoryWidget::update() { int pageshift; /* log base 2 of the pagesize */ - register int pagesize; + int pagesize; vm_statistics_data_t vmstats; int swap_pages=0,swap_free=0,i; struct tbl_swapinfo swbuf; |