summaryrefslogtreecommitdiffstats
path: root/xorg/X11R7.6/rdp/rdpmisc.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-02-13 20:41:07 -0800
committerPavel Roskin <plroskin@gmail.com>2016-02-13 20:41:07 -0800
commit92a6833e9b808301bb3435bc1290f4b8d6242be5 (patch)
tree98b1175dafcc2d3177fce02b91b77a6f6eb1e620 /xorg/X11R7.6/rdp/rdpmisc.c
parentafa6ec97cc90ce45086df13ca7a5914a28175820 (diff)
downloadxrdp-proprietary-92a6833e9b808301bb3435bc1290f4b8d6242be5.tar.gz
xrdp-proprietary-92a6833e9b808301bb3435bc1290f4b8d6242be5.zip
Fix typos
Diffstat (limited to 'xorg/X11R7.6/rdp/rdpmisc.c')
-rw-r--r--xorg/X11R7.6/rdp/rdpmisc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdpmisc.c b/xorg/X11R7.6/rdp/rdpmisc.c
index 1d57d1fa..f8316ff8 100644
--- a/xorg/X11R7.6/rdp/rdpmisc.c
+++ b/xorg/X11R7.6/rdp/rdpmisc.c
@@ -254,7 +254,7 @@ g_malloc(int size, int zero)
//#ifdef _XSERVER64
#if 1
- /* I thought xalloc whould work here but I guess not, why, todo */
+ /* I thought xalloc would work here but I guess not, why, todo */
rv = (char *)malloc(size);
#else
rv = (char *)Xalloc(size);
@@ -279,7 +279,7 @@ g_free(void *ptr)
{
//#ifdef _XSERVER64
#if 1
- /* I thought xfree whould work here but I guess not, why, todo */
+ /* I thought xfree would work here but I guess not, why, todo */
free(ptr);
#else
Xfree(ptr);