Skip to content

Commit a649459

Browse files
committed
v1.0.3
1 parent 29731f7 commit a649459

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/php/src/sapi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub extern "C" fn sapi_module_deactivate() -> c_int {
214214
}
215215

216216
#[no_mangle]
217-
pub extern "C" fn sapi_module_ub_write(str: *const i8, str_length: usize) -> usize {
217+
pub extern "C" fn sapi_module_ub_write(str: *const c_char, str_length: usize) -> usize {
218218
if str.is_null() || str_length == 0 {
219219
return 0;
220220
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@platformatic/php-node",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"napi": {

0 commit comments

Comments
 (0)