diff options
| author | Chris Forbes <chrisforbes@google.com> | 2016-03-31 18:02:29 +1300 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-04-01 14:24:37 -0600 |
| commit | 61ca9907114a345afbe234da48ae637805b15d97 (patch) | |
| tree | b539b65d01789c5d9369e12ae4a2b3ea5b4a6e64 /layers/core_validation.cpp | |
| parent | 0de6594eafe66d67de4311275fc084732cf78475 (diff) | |
| download | usermoji-61ca9907114a345afbe234da48ae637805b15d97.tar.xz | |
layers: trivial: remove stray () from end of error message
This wasn't describing a function; the () on the end is just nonsense.
Signed-off-by: Chris Forbes <chrisforbes@google.com>
Diffstat (limited to 'layers/core_validation.cpp')
| -rw-r--r-- | layers/core_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 56a6a218..dee2e7ac 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -771,7 +771,7 @@ static VkBool32 set_mem_binding(layer_data *dev_data, void *dispatch_object, VkD if (!pObjBindInfo) { skipCall |= log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, type, handle, __LINE__, MEMTRACK_MISSING_MEM_BINDINGS, - "MEM", "In %s, attempting to update Binding of %s Obj(%#" PRIxLEAST64 ") that's not in global list()", + "MEM", "In %s, attempting to update Binding of %s Obj(%#" PRIxLEAST64 ") that's not in global list", object_type_to_string(type), apiName, handle); } else { // non-null case so should have real mem obj |
