janitorial: Remove superfluous backslashes at end of lines.
diff --git a/dlls/comctl32/datetime.c b/dlls/comctl32/datetime.c
index 02b6685..100cd74 100644
--- a/dlls/comctl32/datetime.c
+++ b/dlls/comctl32/datetime.c
@@ -1072,7 +1072,7 @@
TRACE("got focus from %p\n", lostFocus);
/* if monthcal is open and it loses focus, close monthcal */
- if (infoPtr->hMonthCal && (lostFocus == infoPtr->hMonthCal) && \
+ if (infoPtr->hMonthCal && (lostFocus == infoPtr->hMonthCal) &&
IsWindowVisible(infoPtr->hMonthCal))
{
ShowWindow(infoPtr->hMonthCal, SW_HIDE);
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 65e7151..684a3b4 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -500,7 +500,7 @@
draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
- pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);\
+ pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
}
transform_and_round_points(graphics, pti, ptcopy, count);
diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c
index fd8184b..2c674bb 100644
--- a/dlls/msi/tests/install.c
+++ b/dlls/msi/tests/install.c
@@ -2447,7 +2447,7 @@
state = MsiQueryProductState("{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}");
ok(state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
- state = MsiQueryFeatureState("{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}", "feature");\
+ state = MsiQueryFeatureState("{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}", "feature");
ok(state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
state = MsiQueryFeatureState("{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}", "montecristo");
diff --git a/dlls/msi/tests/msi.c b/dlls/msi/tests/msi.c
index b31d88f..d400360 100644
--- a/dlls/msi/tests/msi.c
+++ b/dlls/msi/tests/msi.c
@@ -736,7 +736,7 @@
/* empty szProductCode */
state = MAGIC_ERROR;
- r = pMsiQueryComponentStateA("", NULL, MSIINSTALLCONTEXT_MACHINE, component, &state);\
+ r = pMsiQueryComponentStateA("", NULL, MSIINSTALLCONTEXT_MACHINE, component, &state);
ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
ok(state == MAGIC_ERROR, "Expected 0xdeadbeef, got %d\n", state);
diff --git a/dlls/oleaut32/tests/varformat.c b/dlls/oleaut32/tests/varformat.c
index 5a13e67..399aeb7 100644
--- a/dlls/oleaut32/tests/varformat.c
+++ b/dlls/oleaut32/tests/varformat.c
@@ -393,7 +393,7 @@
VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
}
-static const char *szVarWdnFail = \
+static const char *szVarWdnFail =
"VarWeekdayName (%d, %d, %d, %d, %x): returned %8x, expected %8x\n";
#define VARWDN(iWeekday, fAbbrev, iFirstDay, dwFlags, ret, buff, out, freeOut) \
do { \
diff --git a/dlls/quartz/tests/misc.c b/dlls/quartz/tests/misc.c
index fbe81bf..3be5757 100644
--- a/dlls/quartz/tests/misc.c
+++ b/dlls/quartz/tests/misc.c
@@ -97,7 +97,7 @@
QI_SUCCEED(pUnkInner, iidInner, pUnkAggregatee);
QI_SUCCEED(pUnkInner, IID_IUnknown, pUnkInnerTest);
- if (!pUnkAggregator || !pUnkOuterTest || !pUnkAggregatee \
+ if (!pUnkAggregator || !pUnkOuterTest || !pUnkAggregatee
|| !pUnkInnerTest)
{
skip("One of the required interfaces is NULL\n");