fanitarantsopoulou / MovieDatabase

This is about a movie adminstration system. The user selects one of the given functions in order to insert, erase, print etc. information about the chosen movie.
1 stars 0 forks source link

Insert integer error #1

Open fanitarantsopoulou opened 10 months ago

fanitarantsopoulou commented 10 months ago

ergasia1.c:54:16: warning: passing argument 1 of 'insert' makes integer from pointer without a cast [-Wint-conversion] insert(newMovie.code, newMovie.title, newMovie.year); ^~~~

H8K56 commented 10 months ago

try changing int* year in the struct to int year instead.