From: Rob Clark Date: Mon, 2 Jul 2018 12:15:43 +0000 (-0400) Subject: mesa: fix error msg typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=426f1c60bced83cd9d9d026249f7e99e44aeeae6;p=mesa.git mesa: fix error msg typo Signed-off-by: Rob Clark Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/performance_monitor.c b/src/mesa/main/performance_monitor.c index 65ea8437fd8..359727777ff 100644 --- a/src/mesa/main/performance_monitor.c +++ b/src/mesa/main/performance_monitor.c @@ -542,7 +542,7 @@ _mesa_EndPerfMonitorAMD(GLuint monitor) * when a performance monitor is not currently started." */ if (!m->Active) { - _mesa_error(ctx, GL_INVALID_OPERATION, "glBeginPerfMonitor(not active)"); + _mesa_error(ctx, GL_INVALID_OPERATION, "glEndPerfMonitor(not active)"); return; }