summaryrefslogtreecommitdiff
path: root/src/KM_fileio.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-01 20:42:55 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-01 20:42:55 +0200
commitee2ba36e87ebb9546d06b65ada307c823db5dcd2 (patch)
treee7567fcbb024363ed77bd9cfc3221b08ecb874a0 /src/KM_fileio.cpp
parent97918d86caf4b5a2296a0d3092f1e2e69b9af9e5 (diff)
Remove use of deprecated register keyword.
Diffstat (limited to 'src/KM_fileio.cpp')
-rw-r--r--src/KM_fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/KM_fileio.cpp b/src/KM_fileio.cpp
index 374f11c..c70002d 100644
--- a/src/KM_fileio.cpp
+++ b/src/KM_fileio.cpp
@@ -738,7 +738,7 @@ Kumu::Result_t
Kumu::FileWriter::Writev(const byte_t* buf, ui32_t buf_len)
{
assert( ! m_IOVec.empty() );
- register h__iovec* iov = m_IOVec;
+ h__iovec* iov = m_IOVec;
KM_TEST_NULL_L(buf);
if ( iov->m_Count >= IOVecMaxEntries )
@@ -1193,7 +1193,7 @@ Kumu::Result_t
Kumu::FileWriter::Writev(ui32_t* bytes_written)
{
assert( ! m_IOVec.empty() );
- register h__iovec* iov = m_IOVec;
+ h__iovec* iov = m_IOVec;
ui32_t tmp_int;
if ( bytes_written == 0 )