diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-05-03 13:07:13 -0700 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-05-04 23:33:30 -0700 |
commit | ca9cbcafc826dc4c3ff6c54fcab3d81789ae5807 (patch) | |
tree | d9ef08b59192ba39b968fd3d6877f946b8bd1ba0 /xorg | |
parent | fdb146740f2e544008e90214854b7a4aa2472e84 (diff) | |
download | xrdp-proprietary-ca9cbcafc826dc4c3ff6c54fcab3d81789ae5807.tar.gz xrdp-proprietary-ca9cbcafc826dc4c3ff6c54fcab3d81789ae5807.zip |
Typo fixes
Diffstat (limited to 'xorg')
-rw-r--r-- | xorg/X11R7.6/rdp/rdp.h | 4 | ||||
-rw-r--r-- | xorg/X11R7.6/rdp/rdpmain.c | 2 | ||||
-rw-r--r-- | xorg/X11R7.6/rdp/rdpup.c | 2 | ||||
-rw-r--r-- | xorg/X11R7.6/rdp/rdpxv.c | 2 | ||||
-rw-r--r-- | xorg/tests/xdemo/xdemo.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/xorg/X11R7.6/rdp/rdp.h b/xorg/X11R7.6/rdp/rdp.h index 901e292b..bc34778b 100644 --- a/xorg/X11R7.6/rdp/rdp.h +++ b/xorg/X11R7.6/rdp/rdp.h @@ -558,9 +558,9 @@ rdpup_set_cursor(short x, short y, char* cur_data, char* cur_mask); int rdpup_set_cursor_ex(short x, short y, char *cur_data, char *cur_mask, int bpp); int -rdpup_create_os_surface(int rdpindexd, int width, int height); +rdpup_create_os_surface(int rdpindex, int width, int height); int -rdpup_create_os_surface_bpp(int rdpindexd, int width, int height, int bpp); +rdpup_create_os_surface_bpp(int rdpindex, int width, int height, int bpp); int rdpup_switch_os_surface(int rdpindex); int diff --git a/xorg/X11R7.6/rdp/rdpmain.c b/xorg/X11R7.6/rdp/rdpmain.c index c08b15cd..7540e12e 100644 --- a/xorg/X11R7.6/rdp/rdpmain.c +++ b/xorg/X11R7.6/rdp/rdpmain.c @@ -41,7 +41,7 @@ Sets up the functions #endif #if XRDP_DISABLE_LINUX_ABSTRACT -/* because including <X11/Xtrans/Xtransint.h> in problematic +/* because including <X11/Xtrans/Xtransint.h> is problematic * we dup a small struct * we need to set flags to zero to turn off abstract sockets */ struct _MyXtransport diff --git a/xorg/X11R7.6/rdp/rdpup.c b/xorg/X11R7.6/rdp/rdpup.c index c9091a7d..54eb779d 100644 --- a/xorg/X11R7.6/rdp/rdpup.c +++ b/xorg/X11R7.6/rdp/rdpup.c @@ -1127,7 +1127,7 @@ rdpup_process_msg(struct stream *s) box.x2 = g_rdpScreen.client_info.minfo[0].right; box.y2 = g_rdpScreen.client_info.minfo[0].bottom; g_do_multimon = 1; - /* adjust monitor info so it's not negitive */ + /* adjust monitor info so it's not negative */ for (index = 1; index < g_rdpScreen.client_info.monitorCount; index++) { box.x1 = min(box.x1, g_rdpScreen.client_info.minfo[index].left); diff --git a/xorg/X11R7.6/rdp/rdpxv.c b/xorg/X11R7.6/rdp/rdpxv.c index d0ce8345..99fbd993 100644 --- a/xorg/X11R7.6/rdp/rdpxv.c +++ b/xorg/X11R7.6/rdp/rdpxv.c @@ -165,7 +165,7 @@ static int rdpXvSetPortAttribute(ClientPtr client, XvPortPtr pPort, Atom attribute, INT32 value) { - LLOGLN(0, ("rdpXvxSetPortAttribute:")); + LLOGLN(0, ("rdpXvSetPortAttribute:")); return Success; } diff --git a/xorg/tests/xdemo/xdemo.c b/xorg/tests/xdemo/xdemo.c index f7e6b0ef..cef93274 100644 --- a/xorg/tests/xdemo/xdemo.c +++ b/xorg/tests/xdemo/xdemo.c @@ -205,7 +205,7 @@ int drawFont(int count, char *msg) } else { - printf("XListFonts() reted NULL\n"); + printf("XListFonts() returned NULL\n"); } #endif |