BPF loader message nits (#5870)

This commit is contained in:
Jack May
2019-09-10 16:13:23 -07:00
committed by GitHub
parent ee4266bc59
commit 008dcd71b9
9 changed files with 5 additions and 15 deletions

View File

@ -2,7 +2,6 @@
extern crate solana_sdk;
use solana_sdk::entrypoint::SUCCESS;
use solana_sdk::info;
#[no_mangle]
pub extern "C" fn entrypoint(_input: *mut u8) -> u32 {
@ -48,6 +47,5 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u32 {
);
assert_eq!(x, 0x0001_ffff_ffff_ffff_fffe);
info!("Success");
SUCCESS
}