From 6fdbad10d4371465228bcc4097df3481398b2aca Mon Sep 17 00:00:00 2001 From: "Sergey Semyonov (Serge)" Date: Thu, 16 Jan 2014 18:50:44 +0000 Subject: [PATCH] newlib: fix typo in user_free() git-svn-id: svn://kolibrios.org@4461 a494cfbc-eb01-0410-851d-a64ba20cac60 --- contrib/sdk/sources/newlib/include/kos32sys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/sdk/sources/newlib/include/kos32sys.h b/contrib/sdk/sources/newlib/include/kos32sys.h index 2d7c740d59..5dbddd901e 100644 --- a/contrib/sdk/sources/newlib/include/kos32sys.h +++ b/contrib/sdk/sources/newlib/include/kos32sys.h @@ -291,7 +291,7 @@ int user_free(void *mem) __asm__ __volatile__( "int $0x40" :"=a"(val) - :"a"(68),"b"(12),"c"(mem)); + :"a"(68),"b"(13),"c"(mem)); return val; }