Message ID | 20200626164307.3327380-7-dinechin@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | RFC: Move SPICE to a load module | expand |
On 6/26/20 6:43 PM, Christophe de Dinechin wrote: > Signed-off-by: Christophe de Dinechin <dinechin@redhat.com> > --- > hw/display/qxl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/display/qxl.c b/hw/display/qxl.c > index d5627119ec..28caf878cd 100644 > --- a/hw/display/qxl.c > +++ b/hw/display/qxl.c > @@ -51,7 +51,7 @@ > #undef ALIGN > #define ALIGN(a, b) (((a) + ((b) - 1)) & ~((b) - 1)) > > -#define PIXEL_SIZE 0.2936875 //1280x1024 is 14.8" x 11.9" > +#define PIXEL_SIZE 0.2936875 //1280x1024 is 14.8" x 11.9" From CODING_STYLE.rst: Comment style ============= We use traditional C-style /``*`` ``*``/ comments and avoid // comments. Let's switch to the C-style format :) > > #define QXL_MODE(_x, _y, _b, _o) \ > { .x_res = _x, \ >
diff --git a/hw/display/qxl.c b/hw/display/qxl.c index d5627119ec..28caf878cd 100644 --- a/hw/display/qxl.c +++ b/hw/display/qxl.c @@ -51,7 +51,7 @@ #undef ALIGN #define ALIGN(a, b) (((a) + ((b) - 1)) & ~((b) - 1)) -#define PIXEL_SIZE 0.2936875 //1280x1024 is 14.8" x 11.9" +#define PIXEL_SIZE 0.2936875 //1280x1024 is 14.8" x 11.9" #define QXL_MODE(_x, _y, _b, _o) \ { .x_res = _x, \
Signed-off-by: Christophe de Dinechin <dinechin@redhat.com> --- hw/display/qxl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)