diff options
| author | Markus Armbruster <armbru@redhat.com> | 2024-09-04 13:18:25 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2024-09-10 13:22:47 +0200 |
| commit | 154fd4d1a09c4fb53f21bce94793253eeaf279db (patch) | |
| tree | 5c686e76b8237f309def6d0966c04e1a12c0023e /ui/egl-headless.c | |
| parent | 0aa4bd6aebf1dc951da5c5b762eff13c8d37f768 (diff) | |
| download | focaccia-qemu-154fd4d1a09c4fb53f21bce94793253eeaf279db.tar.gz focaccia-qemu-154fd4d1a09c4fb53f21bce94793253eeaf279db.zip | |
qapi/ui: Drop temporary 'prefix'
Recent commit "qapi: Smarter camel_to_upper() to reduce need for 'prefix'" added a temporary 'prefix' to delay changing the generated code. Revert it. This improves DisplayGLMode's generated enumeration constant prefix from DISPLAYGL_MODE to DISPLAY_GL_MODE. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240904111836.3273842-9-armbru@redhat.com>
Diffstat (limited to 'ui/egl-headless.c')
| -rw-r--r-- | ui/egl-headless.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/egl-headless.c b/ui/egl-headless.c index 6187249c73..1f6b845500 100644 --- a/ui/egl-headless.c +++ b/ui/egl-headless.c @@ -207,7 +207,7 @@ static const DisplayGLCtxOps eglctx_ops = { static void early_egl_headless_init(DisplayOptions *opts) { - DisplayGLMode mode = DISPLAYGL_MODE_ON; + DisplayGLMode mode = DISPLAY_GL_MODE_ON; if (opts->has_gl) { mode = opts->gl; |