summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2019-01-07 14:42:53 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2019-01-07 14:42:53 -0800
commit542befe40a3a7c6a5d1dcb7f38fb9eb261b96b24 (patch)
tree6c9f8f32a4400952e0819dffc158a4a1c72931ce /src
parent8287ebd7b752c33b0cabc4982606fe4831106f7e (diff)
c_client: fix "adress" typo
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src')
-rw-r--r--src/c_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_client.py b/src/c_client.py
index 2213a31..39f162e 100644
--- a/src/c_client.py
+++ b/src/c_client.py
@@ -1933,7 +1933,7 @@ def _c_accessors_list(self, field):
else:
# use the accessor to get the start of the list, then
# compute the length of it by subtracting it from
- # the adress of the first byte after the end of the
+ # the address of the first byte after the end of the
# request
after_end_of_request = '(((char*)R) + R->length * 4)'
start_of_list = '%s(R)' % (field.c_accessor_name)