diff options
-rw-r--r-- | odb/oracle/traits.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/oracle/traits.cxx b/odb/oracle/traits.cxx index b9a0f02..2452838 100644 --- a/odb/oracle/traits.cxx +++ b/odb/oracle/traits.cxx @@ -47,7 +47,7 @@ namespace odb // Figure out the length. We cannot use strlen since it may // not be 0-terminated (strnlen is not standard). // - for (n = 0; n != N && v[n] != '\0'; ++n); + for (n = 0; n != N && v[n] != '\0'; ++n) ; if (n > c) n = c; |