Bug 138089

Summary: missing return statement
Product: [Fedora] Fedora Reporter: David Binderman <dcb314>
Component: rpmAssignee: Paul Nasrat <nobody+pnasrat>
Status: CLOSED RAWHIDE QA Contact: Mike McLean <mikem>
Severity: medium Docs Contact:
Priority: medium    
Version: 3CC: nobody+pnasrat
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-11-28 21:44:45 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description David Binderman 2004-11-04 16:11:55 UTC
Description of problem:

I just tried to compile package rpm-4.3.2-8 from 
Redhat Fedora Core 3 Test 3.

The compiler said

local/linit.c(7): warning #1011: missing return statement at end of
non-void function "luaopen_init"

The source code is

LUA_API int luaopen_init(lua_State *L)
{
#include "linit.lch"
}

Suggest add return statement at the end of the routine.


Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Paul Nasrat 2005-11-28 21:44:45 UTC
Rawhide rpm's lua:

LUA_API int luaopen_init(lua_State *L)
{
#include "linit.lch"
    return 0;
}