diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-06-25 01:17:20 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-06-25 01:17:20 +0200 |
commit | b7fbfb7f478905d9f8778d272861b501b9f88d2a (patch) | |
tree | 80758bae76f7cc60e43205d4c076c0276b775aab /src/pooptmodule.c | |
parent | 1d9d085d158c03997c3e7536e8a4195cc799a762 (diff) | |
download | poezio-b7fbfb7f478905d9f8778d272861b501b9f88d2a.tar.gz poezio-b7fbfb7f478905d9f8778d272861b501b9f88d2a.tar.bz2 poezio-b7fbfb7f478905d9f8778d272861b501b9f88d2a.tar.xz poezio-b7fbfb7f478905d9f8778d272861b501b9f88d2a.zip |
Aaaand that’s static
Diffstat (limited to 'src/pooptmodule.c')
-rw-r--r-- | src/pooptmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pooptmodule.c b/src/pooptmodule.c index b45f49a0..364d568f 100644 --- a/src/pooptmodule.c +++ b/src/pooptmodule.c @@ -25,7 +25,7 @@ PyObject *ErrorObject; return 1 instead because this is by far the most probable real value. As for \n, \t and their friends, they are not supposed to be passed in this function, ever. */ -int xwcwidth(wchar_t c) +static int xwcwidth(wchar_t c) { const int res = wcwidth(c); if (res == -1) |