module Keyutils::Lib::NonnegativeOrErrorLongConverter

Public Class Methods

from_native(val, ctx) click to toggle source
Calls superclass method
# File lib/keyutils/lib.rb, line 165
def self.from_native val, ctx
  fail SystemCallError, FFI.errno, caller if val == -1
  super
end