Bug 149880
| Summary: | 2 * invalid format string conversion + bad defn of size_t | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | David Binderman <dcb314> |
| Component: | mknbi | Assignee: | Dams <anvil> |
| Status: | CLOSED INSUFFICIENT_DATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 3 | CC: | Christian.Iseli |
| 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: | 2008-02-07 00:11:40 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: | |||
FC3 and FC4 have now been EOL'd. Please check the ticket against a current Fedora release, and either adjust the release number, or close it if appropriate. Thanks. Your friendly BZ janitor :-) Fedora Core 3 is not maintained anymore. Setting status to "INSUFFICIENT_DATA". If you can reproduce this bug in the current Fedora release please reopen this bug and assign it to the corresponding Fedora version. |
Description of problem: I just tried to compile package mknbi-1.4.0-3 from Redhat Fedora Extras development tree. The compiler said 1. first32.c(303): warning #269: invalid format string conversion The source code is return sprintf(op, "%@", ip); I've checked the man page for sprintf, and I cannot see %@ specified. Maybe it should be changed to something else. 2. first32.c(333): warning #269: invalid format string conversion Duplicate. 3. stddef.h(3): warning #910: declaration of "size_t" does not match the expected type "unsigned int" The source code is typedef int size_t; ISO C requires size_t to be an unsigned type. Suggest typedef unsigned int size_t; Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info: