summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/Value.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibSQL/Value.cpp')
-rw-r--r--Userland/Libraries/LibSQL/Value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibSQL/Value.cpp b/Userland/Libraries/LibSQL/Value.cpp
index 789e14623a..1cbb2be685 100644
--- a/Userland/Libraries/LibSQL/Value.cpp
+++ b/Userland/Libraries/LibSQL/Value.cpp
@@ -221,7 +221,7 @@ DeprecatedString Value::to_deprecated_string() const
builder.join(',', value.values);
builder.append(')');
- return builder.build();
+ return builder.to_deprecated_string();
});
}